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-intel/
Date: Sun, 20 Jan 2019 05:43:27
Message-Id: 1547962986.fbd725b53a8d4af691a50a6679023058a71a1f15.mattst88@gentoo
1 commit: fbd725b53a8d4af691a50a6679023058a71a1f15
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 20 05:30:11 2019 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 20 05:43:06 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbd725b5
7
8 x11-drivers/xf86-video-intel: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 .../xf86-video-intel-2.99.917_p20180214.ebuild | 92 ----------------------
13 1 file changed, 92 deletions(-)
14
15 diff --git a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20180214.ebuild b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20180214.ebuild
16 deleted file mode 100644
17 index 9fc934130bf..00000000000
18 --- a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20180214.ebuild
19 +++ /dev/null
20 @@ -1,92 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -XORG_DRI=dri
27 -XORG_EAUTORECONF=yes
28 -inherit linux-info xorg-2 flag-o-matic
29 -
30 -if [[ ${PV} == 9999* ]]; then
31 - SRC_URI=""
32 -else
33 - KEYWORDS="amd64 x86"
34 - COMMIT_ID="75795523003798d789d417e82aaa81c7ea1ed616"
35 - SRC_URI="https://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/${COMMIT_ID}.tar.xz -> ${P}.tar.xz"
36 - S=${WORKDIR}/${COMMIT_ID}
37 -fi
38 -
39 -DESCRIPTION="X.Org driver for Intel cards"
40 -
41 -IUSE="debug dri3 +sna tools +udev uxa xvmc"
42 -
43 -REQUIRED_USE="
44 - || ( sna uxa )
45 -"
46 -RDEPEND="
47 - x11-libs/libXext
48 - x11-libs/libXfixes
49 - x11-libs/libXScrnSaver
50 - >=x11-libs/pixman-0.27.1
51 - >=x11-libs/libdrm-2.4.52[video_cards_intel]
52 - dri3? (
53 - >=x11-base/xorg-server-1.18
54 - !<=media-libs/mesa-12.0.4
55 - )
56 - sna? (
57 - >=x11-base/xorg-server-1.10
58 - )
59 - tools? (
60 - x11-libs/libX11
61 - x11-libs/libxcb
62 - x11-libs/libXcursor
63 - x11-libs/libXdamage
64 - x11-libs/libXinerama
65 - x11-libs/libXrandr
66 - x11-libs/libXrender
67 - x11-libs/libxshmfence
68 - x11-libs/libXtst
69 - )
70 - udev? (
71 - virtual/udev
72 - )
73 - xvmc? (
74 - x11-libs/libXvMC
75 - >=x11-libs/libxcb-1.5
76 - x11-libs/xcb-util
77 - )
78 -"
79 -DEPEND="${RDEPEND}
80 - x11-base/xorg-proto"
81 -
82 -src_configure() {
83 - replace-flags -Os -O2
84 - XORG_CONFIGURE_OPTIONS=(
85 - --disable-dri1
86 - $(use_enable debug)
87 - $(use_enable dri)
88 - $(use_enable dri dri3)
89 - $(usex dri3 "--with-default-dri=3")
90 - $(use_enable sna)
91 - $(use_enable tools)
92 - $(use_enable udev)
93 - $(use_enable uxa)
94 - $(use_enable xvmc)
95 - )
96 - xorg-2_src_configure
97 -}
98 -
99 -pkg_postinst() {
100 - if linux_config_exists && \
101 - kernel_is -lt 4 3 && ! linux_chkconfig_present DRM_I915_KMS; then
102 - echo
103 - ewarn "This driver requires KMS support in your kernel"
104 - ewarn " Device Drivers --->"
105 - ewarn " Graphics support --->"
106 - ewarn " Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) --->"
107 - ewarn " <*> Intel 830M, 845G, 852GM, 855GM, 865G (i915 driver) --->"
108 - ewarn " i915 driver"
109 - ewarn " [*] Enable modesetting on intel by default"
110 - echo
111 - fi
112 -}