commit: fba246447d80ac5acbf91544555770373f8801ff
Author: Ryan Fox <flewkey <AT> 2a03 <DOT> party>
AuthorDate: Sun Apr 18 19:57:01 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Apr 18 19:57:01 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fba24644
gui-apps/foot: Bump to 1.7.2
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Ryan Fox <flewkey <AT> 2a03.party>
gui-apps/foot/Manifest | 1 +
gui-apps/foot/foot-1.7.2.ebuild | 53 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/gui-apps/foot/Manifest b/gui-apps/foot/Manifest
index e135e988d..1e2f3954a 100644
--- a/gui-apps/foot/Manifest
+++ b/gui-apps/foot/Manifest
@@ -1 +1,2 @@
DIST foot-1.7.1.tar.gz 390533 BLAKE2B
5eac8041ac5f46b71d8037550bcdd14899071e63fc4a9c6eabe2c44d336e3339e7dbf8b487ff79aa09a6f73378d1faca140fedbf864fdf641a0706c0b9c7912a
SHA512
fa6961b24ef7929378c796a77547f509bc2ff319b3b546be8fad31dd02f2686771d2d4a0c72792746e004052fc032f180eb716cb45e2ebbf549859f1b7de7420
+DIST foot-1.7.2.tar.gz 392748 BLAKE2B
effd72665c553fbf3687fdb17776b264a775311503d974d12b5de4f4b7d1b835755824781a345f29f4866a33f449c61990830452bdca101952ff8c490e37b5f2
SHA512
2acb46daca5840b3a9fb0fc7055f9234618d7d6884ce74fee382f3904136a85f5c17f7119449fd7943dba2ccce2dde9a62d13a1b363ee234765b6ab65d95e19b
diff --git a/gui-apps/foot/foot-1.7.2.ebuild b/gui-apps/foot/foot-1.7.2.ebuild
new file mode 100644
index 000000000..737ae37f1
--- /dev/null
+++ b/gui-apps/foot/foot-1.7.2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson xdg
+
+if [[ ${PV} != *9999* ]]; then
+ SRC_URI="https://codeberg.org/dnkl/foot/archive/${PV}.tar.gz ->
${P}.tar.gz"
+ KEYWORDS="~amd64"
+ S="${WORKDIR}/${PN}"
+else
+ inherit git-r3
+ EGIT_REPO_URI="https://codeberg.org/dnkl/foot.git"
+fi
+
+DESCRIPTION="A fast, lightweight and minimalistic Wayland terminal emulator"
+HOMEPAGE="https://codeberg.org/dnkl/foot"
+LICENSE="MIT"
+SLOT="0"
+IUSE="ime"
+
+DEPEND="
+ dev-libs/wayland
+ media-libs/fcft
+ media-libs/fontconfig
+ media-libs/freetype
+ x11-libs/libxkbcommon
+ x11-libs/pixman
+"
+RDEPEND="
+ ${DEPEND}
+ gui-apps/foot-terminfo
+"
+BDEPEND="
+ app-text/scdoc
+ dev-libs/tllist
+ dev-libs/wayland-protocols
+ sys-libs/ncurses
+"
+
+src_configure() {
+ local emesonargs=(
+ $(meson_use ime)
+ "-Dterminfo=disabled"
+ )
+ meson_src_configure
+}
+
+src_install() {
+ meson_src_install
+ mv "${D}/usr/share/doc/${PN}" "${D}/usr/share/doc/${PF}"
+}