diff options
author | David Seifert <soap@gentoo.org> | 2021-05-02 01:55:05 +0200 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2021-05-02 11:24:43 -0400 |
commit | 1c715b0e857970a7fead61d1ffe953d26b7ad066 (patch) | |
tree | 28cbd6c31d0c5b9bc8048cf3b7ec67006b6d4750 /x11-apps | |
parent | x11-apps/xauth: Define XORG_CONFIGURE_OPTIONS in src_configure (diff) | |
download | gentoo-1c715b0e857970a7fead61d1ffe953d26b7ad066.tar.gz gentoo-1c715b0e857970a7fead61d1ffe953d26b7ad066.tar.bz2 gentoo-1c715b0e857970a7fead61d1ffe953d26b7ad066.zip |
x11-apps/xdpyinfo: 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-apps')
-rw-r--r-- | x11-apps/xdpyinfo/xdpyinfo-1.3.2-r1.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/x11-apps/xdpyinfo/xdpyinfo-1.3.2-r1.ebuild b/x11-apps/xdpyinfo/xdpyinfo-1.3.2-r1.ebuild index e3ef22a0543c..2a2d1656cdbd 100644 --- a/x11-apps/xdpyinfo/xdpyinfo-1.3.2-r1.ebuild +++ b/x11-apps/xdpyinfo/xdpyinfo-1.3.2-r1.ebuild @@ -26,12 +26,12 @@ DEPEND="${RDEPEND} x11-base/xorg-proto " -pkg_setup() { - XORG_CONFIGURE_OPTIONS=( - "--without-xf86misc" +src_configure() { + local XORG_CONFIGURE_OPTIONS=( + --without-xf86misc $(use_with dga) $(use_with dmx) $(use_with xinerama) ) - + xorg-3_src_configure } |