diff options
Diffstat (limited to 'x11-drivers/xf86-video-ati/xf86-video-ati-9999.ebuild')
-rw-r--r-- | x11-drivers/xf86-video-ati/xf86-video-ati-9999.ebuild | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/x11-drivers/xf86-video-ati/xf86-video-ati-9999.ebuild b/x11-drivers/xf86-video-ati/xf86-video-ati-9999.ebuild index 2aab4b2d7290..0d96979995e8 100644 --- a/x11-drivers/xf86-video-ati/xf86-video-ati-9999.ebuild +++ b/x11-drivers/xf86-video-ati/xf86-video-ati-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -25,7 +25,7 @@ DEPEND="${RDEPEND} x11-base/xorg-proto" pkg_pretend() { - if use kernel_linux ; then + if use kernel_linux; then if kernel_is -ge 3 9; then CONFIG_CHECK="~!DRM_RADEON_UMS ~!FB_RADEON" else @@ -36,8 +36,14 @@ pkg_pretend() { } pkg_setup() { - XORG_CONFIGURE_OPTIONS=( + linux-info_pkg_setup + xorg-3_pkg_setup +} + +src_configure() { + local XORG_CONFIGURE_OPTIONS=( --enable-glamor $(use_enable udev) ) + xorg-3_src_configure } |