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 | 3b0774adfd0d098b0c8644d8802ad182da968939 (patch) | |
tree | 91fcd5eb56688ee13e749dd801a48c4d5a19e769 /x11-libs | |
parent | x11-libs/libXcursor: Add EPREFIX (diff) | |
download | gentoo-3b0774adfd0d098b0c8644d8802ad182da968939.tar.gz gentoo-3b0774adfd0d098b0c8644d8802ad182da968939.tar.bz2 gentoo-3b0774adfd0d098b0c8644d8802ad182da968939.zip |
x11-libs/libXdmcp: 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/libXdmcp/libXdmcp-1.1.3.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-libs/libXdmcp/libXdmcp-1.1.3.ebuild b/x11-libs/libXdmcp/libXdmcp-1.1.3.ebuild index b1bacc30fa75..5ce4c7ca0789 100644 --- a/x11-libs/libXdmcp/libXdmcp-1.1.3.ebuild +++ b/x11-libs/libXdmcp/libXdmcp-1.1.3.ebuild @@ -10,16 +10,16 @@ inherit xorg-3 DESCRIPTION="X.Org X Display Manager Control Protocol 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="elibc_glibc? ( dev-libs/libbsd )" DEPEND="${RDEPEND} x11-base/xorg-proto" -pkg_setup() { - XORG_CONFIGURE_OPTIONS=( +src_configure() { + local XORG_CONFIGURE_OPTIONS=( $(use_enable doc docs) $(use_with doc xmlto) --without-fop ) + xorg-3_src_configure } |