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-nouveau: xf86-video-nouveau-0.0.15_pre20100329.ebuild ChangeLog
Date: Sat, 03 Apr 2010 15:57:54
Message-Id: E1Ny5jJ-0002Ze-Cr@stork.gentoo.org
1 chithanh 10/04/03 15:57:49
2
3 Modified: ChangeLog
4 Added: xf86-video-nouveau-0.0.15_pre20100329.ebuild
5 Log:
6 x11-drivers/xf86-video-nouveau: new snapshot
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 x11-drivers/xf86-video-nouveau/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-nouveau/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-nouveau/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-nouveau/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-nouveau/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 23 Feb 2010 08:45:56 -0000 1.3
23 +++ ChangeLog 3 Apr 2010 15:57:49 -0000 1.4
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-drivers/xf86-video-nouveau
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-nouveau/ChangeLog,v 1.3 2010/02/23 08:45:56 chithanh Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-nouveau/ChangeLog,v 1.4 2010/04/03 15:57:49 chithanh Exp $
29 +
30 +*xf86-video-nouveau-0.0.15_pre20100329 (03 Apr 2010)
31 +
32 + 03 Apr 2010; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
33 + +xf86-video-nouveau-0.0.15_pre20100329.ebuild:
34 + new snapshot
35
36 23 Feb 2010; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
37 xf86-video-nouveau-0.0.15_pre20100213.ebuild:
38
39
40
41 1.1 x11-drivers/xf86-video-nouveau/xf86-video-nouveau-0.0.15_pre20100329.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-nouveau/xf86-video-nouveau-0.0.15_pre20100329.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-video-nouveau/xf86-video-nouveau-0.0.15_pre20100329.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xf86-video-nouveau-0.0.15_pre20100329.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-nouveau/xf86-video-nouveau-0.0.15_pre20100329.ebuild,v 1.1 2010/04/03 15:57:49 chithanh Exp $
51
52 EAPI=2
53 SNAPSHOT="yes"
54 inherit linux-info x-modular
55
56 DESCRIPTION="Accelerated Open Source driver for nVidia cards"
57 HOMEPAGE="http://nouveau.freedesktop.org/"
58 SRC_URI="mirror://gentoo/${P}.tar.bz2"
59
60 KEYWORDS="~amd64 ~x86"
61 IUSE=""
62
63 RDEPEND=">=x11-base/xorg-server-1.7[-minimal]
64 >=x11-libs/libdrm-2.4.18_pre"
65
66 DEPEND="${RDEPEND}
67 x11-proto/fontsproto
68 x11-proto/randrproto
69 x11-proto/renderproto
70 x11-proto/videoproto
71 x11-proto/xextproto
72 x11-proto/xf86driproto
73 x11-proto/xproto"
74
75 pkg_postinst() {
76 x-modular_pkg_postinst
77 if ! has_version x11-base/nouveau-drm; then
78 if ! linux_config_exists || ! linux_chkconfig_present DRM_NOUVEAU; then
79 ewarn "Nouveau DRM not detected. If you want any kind of"
80 ewarn "acceleration with nouveau, emerge x11-base/nouveau-drm or"
81 ewarn "enable CONFIG_DRM_NOUVEAU in the kernel."
82 fi
83 if kernel_is 2 6 33 && has_version ">=x11-libs/libdrm-2.4.18"; then
84 ewarn "Nouveau DRM in kernel 2.6.33 is API incompatible to"
85 ewarn ">=x11-libs/libdrm-2.4.18, please use x11-base/nouveau-drm"
86 ewarn "or x11-libs/libdrm-2.4.18_pre20100211 instead."
87 fi
88 if ! has_version x11-drivers/nouveau-firmware; then
89 ewarn "Nouveau firmware not detected, for acceleration on NV50 (G80)"
90 ewarn "and newer chipsets, emerge x11-drivers/nouveau-firmware."
91 fi
92 fi
93 }