diff options
author | 2022-02-23 10:51:20 -0800 | |
---|---|---|
committer | 2022-02-23 10:52:48 -0800 | |
commit | dea3487b0efacae4767005a641646fd5bb1f9537 (patch) | |
tree | 93e26ea3da7b48154c163c6e441702bd950e242b /x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-22.0.0.ebuild | |
parent | sys-kernel/gentoo-kernel-bin: Bump to 5.4.181 (diff) | |
download | gentoo-dea3487b0efacae4767005a641646fd5bb1f9537.tar.gz gentoo-dea3487b0efacae4767005a641646fd5bb1f9537.tar.bz2 gentoo-dea3487b0efacae4767005a641646fd5bb1f9537.zip |
x11-drivers/xf86-video-amdgpu: Version bump to 22.0.0
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-22.0.0.ebuild')
-rw-r--r-- | x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-22.0.0.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-22.0.0.ebuild b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-22.0.0.ebuild new file mode 100644 index 000000000000..1ec692c83e1c --- /dev/null +++ b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-22.0.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +XORG_DRI="always" +XORG_TARBALL_SUFFIX="xz" +inherit xorg-3 + +if [[ ${PV} == 9999* ]]; then + SRC_URI="" +else + KEYWORDS="~amd64 ~ppc64 ~riscv ~x86" +fi + +DESCRIPTION="Accelerated Open Source driver for AMDGPU cards" + +IUSE="udev" + +RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_amdgpu] + x11-base/xorg-server[-minimal] + udev? ( virtual/libudev:= )" +DEPEND="${RDEPEND}" + +src_configure() { + local XORG_CONFIGURE_OPTIONS=( + --enable-glamor + $(use_enable udev) + ) + xorg-3_src_configure +} |