diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-11-10 16:45:23 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-11-10 16:48:01 -0500 |
commit | b224e7c06a4e4620258b6157ec3223e1776b7dc0 (patch) | |
tree | 63a8f651e62cbabfcaeb282b9709242fed0ce8a6 /x11-misc | |
parent | x11-libs/libX11: Version bump to 1.8.2 (diff) | |
download | gentoo-b224e7c06a4e4620258b6157ec3223e1776b7dc0.tar.gz gentoo-b224e7c06a4e4620258b6157ec3223e1776b7dc0.tar.bz2 gentoo-b224e7c06a4e4620258b6157ec3223e1776b7dc0.zip |
x11-misc/compose-tables: Version bump to 1.8.2
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/compose-tables/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/compose-tables/compose-tables-1.8.2.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/x11-misc/compose-tables/Manifest b/x11-misc/compose-tables/Manifest index 5a548468b384..276d1f8339e7 100644 --- a/x11-misc/compose-tables/Manifest +++ b/x11-misc/compose-tables/Manifest @@ -1 +1,2 @@ DIST libX11-1.8.1.tar.xz 1818460 BLAKE2B 7602b4d8c65ea3160f81096b4e022b5462e49d96b36dee70fe06e972329dc9d70bbd462e2079da03ba5647d7a72bf03e29aab23c60bcc206c95d770655622226 SHA512 2e36d2c47519e0cb2697f588c0ccdf73fbe75c2163f0855c78f7052dc9e920bca081f9d5e39c707a14067f101faef74fc758c8862eeba675b1535b43119d533a +DIST libX11-1.8.2.tar.xz 1823712 BLAKE2B e504d93ba399301106181a29e6d869e82abe54472ef8d6a8d4d2d7d9cf94f73914a73911fb1ff156a08b852e5592231059f5ee4c64f2c7e8d49df3c532c9da43 SHA512 662ee8043d9ba27df82f647515b701d6f302a52715f21afdaba391f3b70691753e3649e7ff8322e07858be4297df9cbb19227958d676ed6dea198cce64330d1d diff --git a/x11-misc/compose-tables/compose-tables-1.8.2.ebuild b/x11-misc/compose-tables/compose-tables-1.8.2.ebuild new file mode 100644 index 000000000000..64f043d5d3e9 --- /dev/null +++ b/x11-misc/compose-tables/compose-tables-1.8.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 2020-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +XORG_MULTILIB=no +XORG_TARBALL_SUFFIX=xz +inherit xorg-3 + +# Note: please bump this with x11-libs/libX11 +DESCRIPTION="X.Org Compose Key tables from libX11" +# xorg-3.eclass would attempt to fetch a tarball with a matching name to this package +SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/lib/libX11-${PV}.tar.${XORG_TARBALL_SUFFIX}" +S="${WORKDIR}/libX11-${PV}/" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" + +# Only needed by configure +DEPEND=" + x11-base/xorg-proto + >=x11-libs/libxcb-1.11.1 + x11-libs/xtrans" +RDEPEND="!<x11-libs/libX11-1.7.0" + +XORG_CONFIGURE_OPTIONS=( + --without-xmlto + --without-fop + --disable-specs + --disable-xkb +) + +src_compile() { + emake -C nls +} + +src_test() { + :; +} + +src_install() { + emake DESTDIR="${D}" -C nls install +} |