Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-ati/
Date: Mon, 07 Feb 2022 19:03:37
Message-Id: 1644260600.a9634067c53a2f3eb3aec8b607cbfda31ae2431e.mattst88@gentoo
1 commit: a9634067c53a2f3eb3aec8b607cbfda31ae2431e
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 7 19:01:17 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 7 19:03:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9634067
7
8 x11-drivers/xf86-video-ati: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 .../xf86-video-ati/xf86-video-ati-19.1.0.ebuild | 53 ----------------------
13 1 file changed, 53 deletions(-)
14
15 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
16 deleted file mode 100644
17 index 70b6b7db0934..000000000000
18 --- a/x11-drivers/xf86-video-ati/xf86-video-ati-19.1.0.ebuild
19 +++ /dev/null
20 @@ -1,53 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -XORG_DRI=always
27 -inherit linux-info xorg-3
28 -
29 -if [[ ${PV} == 9999* ]]; then
30 - SRC_URI=""
31 -else
32 - KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 ~riscv sparc x86"
33 -fi
34 -
35 -DESCRIPTION="ATI video driver"
36 -HOMEPAGE="https://www.x.org/wiki/ati/"
37 -
38 -IUSE="udev"
39 -
40 -RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_radeon]
41 - >=x11-libs/libpciaccess-0.8.0
42 - x11-base/xorg-server[-minimal]
43 - udev? ( virtual/libudev:= )"
44 -DEPEND="${RDEPEND}
45 - x11-base/xorg-proto"
46 -
47 -PATCHES=(
48 - "${FILESDIR}"/${P}-Fix-link-failure-with-gcc-10.patch
49 -)
50 -
51 -pkg_pretend() {
52 - if use kernel_linux; then
53 - if kernel_is -ge 3 9; then
54 - CONFIG_CHECK="~!DRM_RADEON_UMS ~!FB_RADEON"
55 - else
56 - CONFIG_CHECK="~DRM_RADEON_KMS ~!FB_RADEON"
57 - fi
58 - fi
59 - check_extra_config
60 -}
61 -
62 -pkg_setup() {
63 - linux-info_pkg_setup
64 - xorg-3_pkg_setup
65 -}
66 -
67 -src_configure() {
68 - local XORG_CONFIGURE_OPTIONS=(
69 - --enable-glamor
70 - $(use_enable udev)
71 - )
72 - xorg-3_src_configure
73 -}