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:46 -0400 |
commit | a90001763c53cf95c20946260957974c7f12dc96 (patch) | |
tree | 529b382e471113332a58f869818f40de8e30d365 /x11-libs | |
parent | x11-drivers/xf86-video-qxl: Call xorg-3_pkg_setup (diff) | |
download | gentoo-a90001763c53cf95c20946260957974c7f12dc96.tar.gz gentoo-a90001763c53cf95c20946260957974c7f12dc96.tar.bz2 gentoo-a90001763c53cf95c20946260957974c7f12dc96.zip |
x11-libs/libFS: 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/libFS/libFS-1.0.8.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/x11-libs/libFS/libFS-1.0.8.ebuild b/x11-libs/libFS/libFS-1.0.8.ebuild index d09e896974b0..fcc892130f92 100644 --- a/x11-libs/libFS/libFS-1.0.8.ebuild +++ b/x11-libs/libFS/libFS-1.0.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -10,12 +10,13 @@ DESCRIPTION="X.Org FS library" KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86" IUSE="ipv6" -DEPEND="x11-base/xorg-proto +DEPEND=" + x11-base/xorg-proto x11-libs/xtrans" -RDEPEND="" -pkg_setup() { - XORG_CONFIGURE_OPTIONS=( +src_configure() { + local XORG_CONFIGURE_OPTIONS=( $(use_enable ipv6) ) + xorg-3_src_configure } |