diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-09-09 21:28:45 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-09-09 21:28:45 +0100 |
commit | b8b7eb3020ceaf85ef3f94efb82ebc44ec03a7cf (patch) | |
tree | 3826cab6ce00b90b05dbf700614011300756cb94 /x11-libs/libX11 | |
parent | b0f5c2f4b0d1df3223e781ad4d53109b9824bf45 (diff) |
x11-libs/libX11 : use Debian's workaround (https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1016363)
Diffstat (limited to 'x11-libs/libX11')
-rw-r--r-- | x11-libs/libX11/Manifest | 1 | ||||
-rw-r--r-- | x11-libs/libX11/libX11-1.8.1-r1.ebuild | 45 |
2 files changed, 46 insertions, 0 deletions
diff --git a/x11-libs/libX11/Manifest b/x11-libs/libX11/Manifest new file mode 100644 index 00000000..5a548468 --- /dev/null +++ b/x11-libs/libX11/Manifest @@ -0,0 +1 @@ +DIST libX11-1.8.1.tar.xz 1818460 BLAKE2B 7602b4d8c65ea3160f81096b4e022b5462e49d96b36dee70fe06e972329dc9d70bbd462e2079da03ba5647d7a72bf03e29aab23c60bcc206c95d770655622226 SHA512 2e36d2c47519e0cb2697f588c0ccdf73fbe75c2163f0855c78f7052dc9e920bca081f9d5e39c707a14067f101faef74fc758c8862eeba675b1535b43119d533a diff --git a/x11-libs/libX11/libX11-1.8.1-r1.ebuild b/x11-libs/libX11/libX11-1.8.1-r1.ebuild new file mode 100644 index 00000000..9fe578d1 --- /dev/null +++ b/x11-libs/libX11/libX11-1.8.1-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +XORG_DOC=doc +XORG_MULTILIB=yes +XORG_TARBALL_SUFFIX=xz +inherit toolchain-funcs xorg-3 + +# Note: please bump this with x11-misc/compose-tables +DESCRIPTION="X.Org X11 library" + +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=x11-libs/libxcb-1.11.1[${MULTILIB_USEDEP}] + x11-misc/compose-tables + + !<xfce-base/xfce4-settings-4.16.3 +" +DEPEND="${RDEPEND} + x11-base/xorg-proto + x11-libs/xtrans +" +BDEPEND="test? ( dev-lang/perl )" + +src_configure() { + local XORG_CONFIGURE_OPTIONS=( + $(use_with doc xmlto) + $(use_enable doc specs) + --enable-ipv6 + --without-fop + --disable-thread-safety-constructor + CPP="$(tc-getPROG CPP cpp)" + ) + xorg-3_src_configure +} + +src_install() { + xorg-3_src_install + rm -rf "${ED}"/usr/share/X11/locale || die +} |