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: Fri, 14 Sep 2018 17:19:11
Message-Id: 1536945518.55a139e8b6c7cc7ed06e287f0234dc171009f5a4.mattst88@gentoo
1 commit: 55a139e8b6c7cc7ed06e287f0234dc171009f5a4
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 14 17:15:43 2018 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 14 17:18:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55a139e8
7
8 x11-drivers/xf86-video-ati: Version bump to 18.1.0
9
10 x11-drivers/xf86-video-ati/Manifest | 1 +
11 .../xf86-video-ati/xf86-video-ati-18.1.0.ebuild | 44 ++++++++++++++++++++++
12 2 files changed, 45 insertions(+)
13
14 diff --git a/x11-drivers/xf86-video-ati/Manifest b/x11-drivers/xf86-video-ati/Manifest
15 index 458ae7e7d93..f18b564cd08 100644
16 --- a/x11-drivers/xf86-video-ati/Manifest
17 +++ b/x11-drivers/xf86-video-ati/Manifest
18 @@ -1 +1,2 @@
19 DIST xf86-video-ati-18.0.1.tar.bz2 881457 BLAKE2B d45ae191239d008261230804161545e971d5ba9b76642341dad5dfb03b52aa3580e2e41fb7f0484af8da5024da46ada2bca182c15ec13053d674e456fb6f0f4a SHA512 b468a78503a596bbf71a1b91b231ce1fa32908f619ff2dfe249352d046696a3641f2a9ff065e32545fff77100134b4b237591215e78ef885b6509d6b16112d14
20 +DIST xf86-video-ati-18.1.0.tar.bz2 891953 BLAKE2B 9092554c708b583f9b99a6788104a1e9420537fbbeaaaa6ae7e82be2a2299ad834365d00f8b146ce845afb5e2a08d3de3da591143eff63d4fb34c7040251f443 SHA512 7a58c9a6cb4876bd2ff37d837372b4e360e81fec7de6a6c7a48d70a5338d62745f734f5d4207f30aa368ff2d9ef44f5f1ef36afd73802a618998c16fe395ed53
21
22 diff --git a/x11-drivers/xf86-video-ati/xf86-video-ati-18.1.0.ebuild b/x11-drivers/xf86-video-ati/xf86-video-ati-18.1.0.ebuild
23 new file mode 100644
24 index 00000000000..3f5390aec7a
25 --- /dev/null
26 +++ b/x11-drivers/xf86-video-ati/xf86-video-ati-18.1.0.ebuild
27 @@ -0,0 +1,44 @@
28 +# Copyright 1999-2018 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=5
32 +
33 +XORG_DRI=always
34 +inherit linux-info xorg-2
35 +
36 +if [[ ${PV} == 9999* ]]; then
37 + SRC_URI=""
38 +else
39 + KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
40 +fi
41 +
42 +DESCRIPTION="ATI video driver"
43 +HOMEPAGE="https://www.x.org/wiki/ati/"
44 +
45 +IUSE="+glamor udev"
46 +
47 +RDEPEND=">=x11-libs/libdrm-2.4.78[video_cards_radeon]
48 + >=x11-libs/libpciaccess-0.8.0
49 + glamor? ( x11-base/xorg-server[glamor] )
50 + udev? ( virtual/libudev:= )"
51 +DEPEND="${RDEPEND}
52 + x11-base/xorg-proto"
53 +
54 +pkg_pretend() {
55 + if use kernel_linux ; then
56 + if kernel_is -ge 3 9; then
57 + CONFIG_CHECK="~!DRM_RADEON_UMS ~!FB_RADEON"
58 + else
59 + CONFIG_CHECK="~DRM_RADEON_KMS ~!FB_RADEON"
60 + fi
61 + fi
62 + check_extra_config
63 +}
64 +
65 +src_configure() {
66 + XORG_CONFIGURE_OPTIONS=(
67 + $(use_enable glamor)
68 + $(use_enable udev)
69 + )
70 + xorg-2_src_configure
71 +}