Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-intel: ChangeLog xf86-video-intel-2.16.901.ebuild
Date: Mon, 31 Oct 2011 19:50:40
Message-Id: 20111031195030.BB3512004B@flycatcher.gentoo.org
1 chithanh 11/10/31 19:50:30
2
3 Modified: ChangeLog
4 Added: xf86-video-intel-2.16.901.ebuild
5 Log:
6 Bump to latest development release.
7
8 (Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.74 x11-drivers/xf86-video-intel/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-intel/ChangeLog?rev=1.74&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-intel/ChangeLog?rev=1.74&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-intel/ChangeLog?r1=1.73&r2=1.74
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-intel/ChangeLog,v
20 retrieving revision 1.73
21 retrieving revision 1.74
22 diff -u -r1.73 -r1.74
23 --- ChangeLog 2 Oct 2011 14:07:43 -0000 1.73
24 +++ ChangeLog 31 Oct 2011 19:50:30 -0000 1.74
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-drivers/xf86-video-intel
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-intel/ChangeLog,v 1.73 2011/10/02 14:07:43 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-intel/ChangeLog,v 1.74 2011/10/31 19:50:30 chithanh Exp $
30 +
31 +*xf86-video-intel-2.16.901 (31 Oct 2011)
32 +
33 + 31 Oct 2011; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
34 + +xf86-video-intel-2.16.901.ebuild:
35 + Bump to latest development release.
36
37 02 Oct 2011; Raúl Porcel <armin76@g.o>
38 xf86-video-intel-2.15.0-r1.ebuild:
39
40
41
42 1.1 x11-drivers/xf86-video-intel/xf86-video-intel-2.16.901.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-intel/xf86-video-intel-2.16.901.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-intel/xf86-video-intel-2.16.901.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xf86-video-intel-2.16.901.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-intel/xf86-video-intel-2.16.901.ebuild,v 1.1 2011/10/31 19:50:30 chithanh Exp $
52
53 EAPI=4
54
55 XORG_DRI=dri
56 inherit linux-info xorg-2
57
58 DESCRIPTION="X.Org driver for Intel cards"
59
60 KEYWORDS="~amd64 ~ia64 ~x86 -x86-fbsd"
61 IUSE="sna"
62
63 RDEPEND="x11-libs/libXext
64 x11-libs/libXfixes
65 x11-libs/libXvMC
66 >=x11-libs/libxcb-1.5
67 >=x11-libs/libdrm-2.4.23[video_cards_intel]
68 sna? (
69 >=x11-base/xorg-server-1.10
70 >=x11-libs/pixman-0.23
71 )"
72 # Requires dri2proto-2.6 (unreleased)
73 DEPEND="${RDEPEND}
74 >=x11-proto/dri2proto-2.6"
75
76 pkg_setup() {
77 xorg-2_pkg_setup
78 XORG_CONFIGURE_OPTIONS=(
79 $(use_enable dri)
80 $(use_enable sna)
81 --enable-xvmc
82 )
83 }
84
85 pkg_postinst() {
86 if linux_config_exists \
87 && ! linux_chkconfig_present DRM_I915_KMS; then
88 echo
89 ewarn "This driver requires KMS support in your kernel"
90 ewarn " Device Drivers --->"
91 ewarn " Graphics support --->"
92 ewarn " Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) --->"
93 ewarn " <*> Intel 830M, 845G, 852GM, 855GM, 865G (i915 driver) --->"
94 ewarn " i915 driver"
95 ewarn " [*] Enable modesetting on intel by default"
96 echo
97 fi
98 }