diff options
author | David Seifert <soap@gentoo.org> | 2021-05-02 01:55:06 +0200 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2021-05-02 11:24:48 -0400 |
commit | 98760be2c6307759167d794337ae2d54dd4fc0bd (patch) | |
tree | 03176fdcc35ae2119f8c6af43744adbc015d8ea9 /x11-libs | |
parent | x11-libs/libXdmcp: Define XORG_CONFIGURE_OPTIONS in src_configure (diff) | |
download | gentoo-98760be2c6307759167d794337ae2d54dd4fc0bd.tar.gz gentoo-98760be2c6307759167d794337ae2d54dd4fc0bd.tar.bz2 gentoo-98760be2c6307759167d794337ae2d54dd4fc0bd.zip |
x11-libs/libXext: Define XORG_CONFIGURE_OPTIONS in src_configure
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Seifert <soap@gentoo.org>
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/libXext/libXext-1.3.4.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-libs/libXext/libXext-1.3.4.ebuild b/x11-libs/libXext/libXext-1.3.4.ebuild index b813cc143a9a..d05404352edc 100644 --- a/x11-libs/libXext/libXext-1.3.4.ebuild +++ b/x11-libs/libXext/libXext-1.3.4.ebuild @@ -10,16 +10,16 @@ inherit xorg-3 DESCRIPTION="X.Org Xext library" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" -IUSE="" RDEPEND=">=x11-libs/libX11-1.6.2:=[${MULTILIB_USEDEP}]" DEPEND="${RDEPEND} x11-base/xorg-proto" -pkg_setup() { - XORG_CONFIGURE_OPTIONS=( +src_configure() { + local XORG_CONFIGURE_OPTIONS=( $(use_enable doc specs) $(use_with doc xmlto) --without-fop ) + xorg-3_src_configure } |