diff options
author | 2024-09-18 07:48:50 +0100 | |
---|---|---|
committer | 2024-09-18 07:49:04 +0100 | |
commit | 233a26421bcc3bb3b6afc6f817bc82afa300c784 (patch) | |
tree | da828c9a764799bfb2941454d83a47dc2cda8bf4 /x11-apps | |
parent | dev-util/bcpp: add 20240917 (diff) | |
download | gentoo-233a26421bcc3bb3b6afc6f817bc82afa300c784.tar.gz gentoo-233a26421bcc3bb3b6afc6f817bc82afa300c784.tar.bz2 gentoo-233a26421bcc3bb3b6afc6f817bc82afa300c784.zip |
x11-apps/luit: add 20240910
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-apps')
-rw-r--r-- | x11-apps/luit/Manifest | 2 | ||||
-rw-r--r-- | x11-apps/luit/luit-20240910.ebuild | 30 |
2 files changed, 32 insertions, 0 deletions
diff --git a/x11-apps/luit/Manifest b/x11-apps/luit/Manifest index 5dc77c681a1d..1b1845334c36 100644 --- a/x11-apps/luit/Manifest +++ b/x11-apps/luit/Manifest @@ -1,2 +1,4 @@ DIST luit-20240102.tgz 210935 BLAKE2B 560815d78e00ee7925b1efc43f7544b4c3d7f7d3e6a7183acaffd1d02931314a51cdead9c8631cb3dfdf2ffca5601405a01146164e1f0043ced55431833c7550 SHA512 0336fadd44fd097e7d10111c18c59725293170f8b0d3779b2b710761c74065cffe7414c576b4df587ef5b1d7794217553a5562e5c665c5a37d660cf9e26bc08e DIST luit-20240102.tgz.asc 729 BLAKE2B d5b133c4cb12e9d17e38d48d0def4fc5533445412375511703334ddbcea3f9987a3043acd4071729e5d71fc7cfeb7c5c02ad7e0b6bb1309d60bc25d646b76997 SHA512 e4b285d147a216003537cd00dd481f4823336f7b8ca9357a561c8adb8bbfca8d584cf304683fe697d7d2713f795a94d973545a092d5d3252d904e5d22357a81e +DIST luit-20240910.tgz 212641 BLAKE2B 8117d94a47aba72c853ea59db5bedb614c0a34811ab1d8e658983c0c9f541a53febb4633fa5fef7cd886aa463f0b496b8c05a6c2af46949c670bbd0b037d12ff SHA512 32afea5dae158eeec1b868a1d942287e7e191c3f57bf557039e510cd80c5d7f48b2c1af4161cc387c37f30578434eee7be9a98a1f6e9c0533b9037e53f2c9bc5 +DIST luit-20240910.tgz.asc 729 BLAKE2B 9bcdf051b39a3194115617d2aa8dbe490dea818f3f9d461a587676c8a415702560f265d556ec602ca02f5b763bb28abede89a0ff06f7220ba0159cbcb096cd0d SHA512 b144d95486ad25ba1c6a9d9d5c11a5f91023d9b45d9481820296ff8e10bde3593abf57e3632a07772167c13c4cb9590587968587d8de6d8bc333328202a6ba15 diff --git a/x11-apps/luit/luit-20240910.ebuild b/x11-apps/luit/luit-20240910.ebuild new file mode 100644 index 000000000000..e8d957a5dc87 --- /dev/null +++ b/x11-apps/luit/luit-20240910.ebuild @@ -0,0 +1,30 @@ +# Copyright 2019-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/thomasdickey.asc +inherit verify-sig + +DESCRIPTION="Locale and ISO 2022 support for Unicode terminals" +HOMEPAGE="https://invisible-island.net/luit/" +SRC_URI="https://invisible-mirror.net/archives/${PN}/${P}.tgz" +SRC_URI+=" verify-sig? ( https://invisible-island.net/archives/${PN}/${P}.tgz.asc )" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" + +DEPEND=" + sys-libs/zlib + virtual/libiconv +" +RDEPEND="${DEPEND}" +BDEPEND=" + sys-apps/groff + verify-sig? ( sec-keys/openpgp-keys-thomasdickey ) +" + +src_configure() { + econf --disable-fontenc --enable-iconv +} |