diff options
author | Alexander Tsoy <alexander@tsoy.me> | 2018-10-26 17:33:53 +0300 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2018-10-27 12:35:48 -0700 |
commit | a2ffd7261021575395aa15181a1d873f58a6ce76 (patch) | |
tree | 071d6e149c37e0b0b1e70f5fd0a78cb34b7a310d /x11-drivers/xf86-video-amdgpu | |
parent | media-libs/mesa: Add MULTILIB_USEDEP to ocl-icd (diff) | |
download | gentoo-a2ffd7261021575395aa15181a1d873f58a6ce76.tar.gz gentoo-a2ffd7261021575395aa15181a1d873f58a6ce76.tar.bz2 gentoo-a2ffd7261021575395aa15181a1d873f58a6ce76.zip |
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@tsoy.me>
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-drivers/xf86-video-amdgpu')
-rw-r--r-- | x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-18.1.0.ebuild | 10 | ||||
-rw-r--r-- | 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 7e47777406d4..877e000a1319 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 90a061997083..df2b7fe4867b 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 } |