Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-drivers/ati-drivers: ChangeLog ati-drivers-9.8.ebuild
Date: Mon, 31 Aug 2009 06:53:26
Message-Id: E1Mi5aU-0003Jv-CM@stork.gentoo.org
1 scarabeus 09/08/31 12:02:18
2
3 Modified: ChangeLog ati-drivers-9.8.ebuild
4 Log:
5 Adjust ACPI checks in ebuild. Per bug #254513.
6 (Portage version: 2.2_rc38/cvs/Linux i686)
7
8 Revision Changes Path
9 1.180 x11-drivers/ati-drivers/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ChangeLog?rev=1.180&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ChangeLog?rev=1.180&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ChangeLog?r1=1.179&r2=1.180
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v
18 retrieving revision 1.179
19 retrieving revision 1.180
20 diff -u -r1.179 -r1.180
21 --- ChangeLog 31 Aug 2009 11:29:55 -0000 1.179
22 +++ ChangeLog 31 Aug 2009 12:02:18 -0000 1.180
23 @@ -1,6 +1,10 @@
24 # ChangeLog for x11-drivers/ati-drivers
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.179 2009/08/31 11:29:55 scarabeus Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.180 2009/08/31 12:02:18 scarabeus Exp $
28 +
29 + 31 Aug 2009; Tomáš Chvátal <scarabeus@g.o>
30 + ati-drivers-9.8.ebuild:
31 + Adjust ACPI checks in ebuild. Per bug #254513.
32
33 31 Aug 2009; Tomáš Chvátal <scarabeus@g.o>
34 ati-drivers-9.8.ebuild:
35
36
37
38 1.11 x11-drivers/ati-drivers/ati-drivers-9.8.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-9.8.ebuild?rev=1.11&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-9.8.ebuild?rev=1.11&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-9.8.ebuild?r1=1.10&r2=1.11
43
44 Index: ati-drivers-9.8.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-9.8.ebuild,v
47 retrieving revision 1.10
48 retrieving revision 1.11
49 diff -u -r1.10 -r1.11
50 --- ati-drivers-9.8.ebuild 31 Aug 2009 11:29:55 -0000 1.10
51 +++ ati-drivers-9.8.ebuild 31 Aug 2009 12:02:18 -0000 1.11
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-9.8.ebuild,v 1.10 2009/08/31 11:29:55 scarabeus Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ati-drivers-9.8.ebuild,v 1.11 2009/08/31 12:02:18 scarabeus Exp $
57
58 EAPI="2"
59
60 @@ -107,6 +107,17 @@
61 ewarn "Direct rendering will not work."
62 fi
63
64 + if ! linux_chkconfig_present ACPI; then
65 + eerror "${P} requires the ACPI support in the kernel"
66 + eerror "Please enable it:"
67 + eerror " CONFIG_ACPI=y"
68 + eerror "in /usr/src/linux/.config or"
69 + eerror " Power management and ACPI options --->"
70 + eerror " [*] Power Management support"
71 + eerror "in the 'menuconfig'"
72 + die "CONFIG_ACPI disabled"
73 + fi
74 +
75 if ! linux_chkconfig_present MAGIC_SYSRQ; then
76 eerror "${P} requires the magic SysRq keys in the kernel."
77 eerror "Please enable it:"
78 @@ -115,6 +126,7 @@
79 eerror " Kernel hacking --->"
80 eerror " [*] Magic SysRq key"
81 eerror "in the 'menuconfig'"
82 + die "CONFIG_MAGIC_SYSRQ disabled"
83 fi
84
85 if ! linux_chkconfig_present PCI_MSI; then