commit:     a2ffd7261021575395aa15181a1d873f58a6ce76
Author:     Alexander Tsoy <alexander <AT> tsoy <DOT> me>
AuthorDate: Fri Oct 26 14:33:53 2018 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Oct 27 19:35:48 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2ffd726

x11-drivers/xf86-video-amdgpu: add "udev" USE flag

This fixes automagic dependency on udev.

Closes: https://bugs.gentoo.org/667058
Closes: https://github.com/gentoo/gentoo/pull/10236
Signed-off-by: Alexander Tsoy <alexander <AT> tsoy.me>
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 .../xf86-video-amdgpu/xf86-video-amdgpu-18.1.0.ebuild        | 10 ++++++++--
 x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild  | 12 +++++++++---
 2 files changed, 17 insertions(+), 5 deletions(-)

diff --git a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-18.1.0.ebuild 
b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-18.1.0.ebuild
index 7e47777406d..877e000a131 100644
--- a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-18.1.0.ebuild
+++ b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-18.1.0.ebuild
@@ -13,11 +13,17 @@ fi
 
 DESCRIPTION="Accelerated Open Source driver for AMDGPU cards"
 
+IUSE="udev"
+
 RDEPEND=">=x11-libs/libdrm-2.4.78[video_cards_amdgpu]
-       x11-base/xorg-server[glamor(-)]"
+       x11-base/xorg-server[glamor(-)]
+       udev? ( virtual/libudev:= )"
 DEPEND="${RDEPEND}"
 
 src_configure() {
-       XORG_CONFIGURE_OPTIONS="--enable-glamor"
+       XORG_CONFIGURE_OPTIONS=(
+               --enable-glamor
+               $(use_enable udev)
+       )
        xorg-2_src_configure
 }

diff --git a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild 
b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild
index 90a06199708..df2b7fe4867 100644
--- a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild
+++ b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,11 +13,17 @@ fi
 
 DESCRIPTION="Accelerated Open Source driver for AMDGPU cards"
 
+IUSE="udev"
+
 RDEPEND=">=x11-libs/libdrm-2.4.78[video_cards_amdgpu]
-       x11-base/xorg-server[glamor(-)]"
+       x11-base/xorg-server[glamor(-)]
+       udev? ( virtual/libudev:= )"
 DEPEND="${RDEPEND}"
 
 src_configure() {
-       XORG_CONFIGURE_OPTIONS="--enable-glamor"
+       XORG_CONFIGURE_OPTIONS=(
+               --enable-glamor
+               $(use_enable udev)
+       )
        xorg-2_src_configure
 }

Reply via email to