commit:     c66862d30f6a260d58e13d4256044b139a4c3be8
Author:     Arsen Arsenović <arsen <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 14 10:59:39 2023 +0000
Commit:     Arsen Arsenović <arsen <AT> gentoo <DOT> org>
CommitDate: Fri Jul 14 11:00:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c66862d3

gui-apps/foot: add 1.15.0

Signed-off-by: Arsen Arsenović <arsen <AT> gentoo.org>

 gui-apps/foot/Manifest           |  1 +
 gui-apps/foot/foot-1.15.0.ebuild | 74 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 75 insertions(+)

diff --git a/gui-apps/foot/Manifest b/gui-apps/foot/Manifest
index 21337f47ffc7..c7826973fd72 100644
--- a/gui-apps/foot/Manifest
+++ b/gui-apps/foot/Manifest
@@ -2,3 +2,4 @@ DIST foot-1.12.1.tar.gz 484702 BLAKE2B 
5f3ed5923dfe2e3d110da298d4abefb331c15bb0f
 DIST foot-1.13.0.tar.gz 495396 BLAKE2B 
9acad754d47754d6161fd4024b7f6a8336cd5e6faa1112bdf390c79ecbd52f74b187544667ca8517618f05324af76da66f0320e86e8b0e178a0f63c556992edf
 SHA512 
ac7c8dc967c897f81f8eda8b0c5de17896015698ac266bc9ce898d3fdb41d0dd96762f28f433d8a31f768e0505e4c89151ef10484407f66865ea6322fa1b6705
 DIST foot-1.13.1.tar.gz 496955 BLAKE2B 
48155439cd11123320908e67a968304903f96a550b62a3aa0c8d5e2053c3b6b2d49e4f4dcbe547b3296fbd05b19385d941ba668975ca3fb3a47a9627ef3d87f8
 SHA512 
f8b0e0d801452ecae914e2535041a65c105ea132a6841b659ac28ebfbfb06f06210466fe05553349a18c50227d7f21677298ff9692c3e9062df37b47aa40f3e1
 DIST foot-1.14.0.tar.gz 509863 BLAKE2B 
fe7e26c3c70e99c00a121e1214f0003dbc8fc986a020e135e18feba515d9e194ba92a494bb33c22e20b96957e87ac5ed721511a9a104481bc24f40ceb9e0e8bd
 SHA512 
379f1acafa8b3fd600c57974d79eef1a7e8a4630015aaeb8a0c491c0903ba1cd24b4fa578880f6cf6c9a09a8566c0609f4cccff9b5f65ade409684ec704c8ce4
+DIST foot-1.15.0.tar.gz 520829 BLAKE2B 
e86dba4c000ae3b290d207a2edef5e3b4240d27dd00c7e174312c3921ce670950c3396bd0d557733c87bcbeacc28fc9768916dc12fc703e5ebfd175afa818f01
 SHA512 
b0d4ad025010e2dbe30e1cfbc5d41c7dabc2d2d99872193134ddbca043d0d63daf85f2e81bcfa4aabcf7335c38e952bb1e46a9d28a1cd8ac62fc14c6bf87cb20

diff --git a/gui-apps/foot/foot-1.15.0.ebuild b/gui-apps/foot/foot-1.15.0.ebuild
new file mode 100644
index 000000000000..ff73ca025c6d
--- /dev/null
+++ b/gui-apps/foot/foot-1.15.0.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson xdg systemd
+
+DESCRIPTION="Fast, lightweight and minimalistic Wayland terminal emulator"
+HOMEPAGE="https://codeberg.org/dnkl/foot";
+SRC_URI="https://codeberg.org/dnkl/foot/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="+grapheme-clustering test"
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="
+       dev-libs/wayland
+       media-libs/fcft
+       media-libs/fontconfig
+       x11-libs/libxkbcommon
+       x11-libs/pixman
+       grapheme-clustering? (
+               dev-libs/libutf8proc:=
+               media-libs/fcft[harfbuzz]
+       )
+"
+DEPEND="
+       ${COMMON_DEPEND}
+       >=dev-libs/tllist-1.1.0
+       dev-libs/wayland-protocols
+"
+RDEPEND="
+       ${COMMON_DEPEND}
+       || (
+               >=sys-libs/ncurses-6.3[-minimal]
+               ~gui-apps/foot-terminfo-${PV}
+       )
+"
+BDEPEND="
+       app-text/scdoc
+       dev-util/wayland-scanner
+"
+
+src_prepare() {
+       default
+       # disable the systemd dep, we install the unit file manually
+       sed -i "s/systemd', required: false)$/', required: false)/" 
"${S}"/meson.build || die
+}
+
+src_configure() {
+       local emesonargs=(
+               $(meson_feature grapheme-clustering)
+               $(meson_use test tests)
+               -Dthemes=true
+               -Dime=true
+               -Dterminfo=disabled
+       )
+       meson_src_configure
+
+       sed 's|@bindir@|/usr/bin|g' "${S}/"/[email protected] > 
[email protected] || die
+}
+
+src_install() {
+       local DOCS=( CHANGELOG.md README.md LICENSE )
+       meson_src_install
+
+       # foot unconditionally installs CHANGELOG.md, README.md and LICENSE.
+       # we handle this via DOCS and dodoc instead.
+       rm -r "${ED}/usr/share/doc/${PN}" || die
+       systemd_douserunit [email protected] "${S}"/[email protected]
+}

Reply via email to