diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-02-07 11:01:17 -0800 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-02-07 11:03:20 -0800 |
commit | a9634067c53a2f3eb3aec8b607cbfda31ae2431e (patch) | |
tree | 2e109967148c4e70fb958c803eb09a058b7b3a10 /x11-drivers/xf86-video-ati | |
parent | x11-base/xorg-server: Drop old versions (diff) | |
download | gentoo-a9634067c53a2f3eb3aec8b607cbfda31ae2431e.tar.gz gentoo-a9634067c53a2f3eb3aec8b607cbfda31ae2431e.tar.bz2 gentoo-a9634067c53a2f3eb3aec8b607cbfda31ae2431e.zip |
x11-drivers/xf86-video-ati: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-drivers/xf86-video-ati')
-rw-r--r-- | x11-drivers/xf86-video-ati/xf86-video-ati-19.1.0.ebuild | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/x11-drivers/xf86-video-ati/xf86-video-ati-19.1.0.ebuild b/x11-drivers/xf86-video-ati/xf86-video-ati-19.1.0.ebuild deleted file mode 100644 index 70b6b7db0934..000000000000 --- a/x11-drivers/xf86-video-ati/xf86-video-ati-19.1.0.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -XORG_DRI=always -inherit linux-info xorg-3 - -if [[ ${PV} == 9999* ]]; then - SRC_URI="" -else - KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 ~riscv sparc x86" -fi - -DESCRIPTION="ATI video driver" -HOMEPAGE="https://www.x.org/wiki/ati/" - -IUSE="udev" - -RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_radeon] - >=x11-libs/libpciaccess-0.8.0 - x11-base/xorg-server[-minimal] - udev? ( virtual/libudev:= )" -DEPEND="${RDEPEND} - x11-base/xorg-proto" - -PATCHES=( - "${FILESDIR}"/${P}-Fix-link-failure-with-gcc-10.patch -) - -pkg_pretend() { - if use kernel_linux; then - if kernel_is -ge 3 9; then - CONFIG_CHECK="~!DRM_RADEON_UMS ~!FB_RADEON" - else - CONFIG_CHECK="~DRM_RADEON_KMS ~!FB_RADEON" - fi - fi - check_extra_config -} - -pkg_setup() { - linux-info_pkg_setup - xorg-3_pkg_setup -} - -src_configure() { - local XORG_CONFIGURE_OPTIONS=( - --enable-glamor - $(use_enable udev) - ) - xorg-3_src_configure -} |