Gentoo Archives: gentoo-commits

From: "Michael Januszewski (spock)" <spock@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/splashutils: splashutils-1.5.4.2.ebuild ChangeLog
Date: Sun, 21 Sep 2008 16:32:39
Message-Id: E1KhRrP-00034b-7E@stork.gentoo.org
1 spock 08/09/21 16:32:35
2
3 Modified: splashutils-1.5.4.2.ebuild ChangeLog
4 Log:
5 Fix console=tty1 check to not allow invalid kernel command line options.
6 (Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc6 x86_64)
7
8 Revision Changes Path
9 1.5 media-gfx/splashutils/splashutils-1.5.4.2.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.2.ebuild?rev=1.5&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.2.ebuild?rev=1.5&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.2.ebuild?r1=1.4&r2=1.5
14
15 Index: splashutils-1.5.4.2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.2.ebuild,v
18 retrieving revision 1.4
19 retrieving revision 1.5
20 diff -u -r1.4 -r1.5
21 --- splashutils-1.5.4.2.ebuild 21 Sep 2008 07:16:19 -0000 1.4
22 +++ splashutils-1.5.4.2.ebuild 21 Sep 2008 16:32:34 -0000 1.5
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.2.ebuild,v 1.4 2008/09/21 07:16:19 solar Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/splashutils-1.5.4.2.ebuild,v 1.5 2008/09/21 16:32:34 spock Exp $
28
29 EAPI="1"
30
31 @@ -182,7 +182,7 @@
32 fi
33
34 if ! test -f /proc/cmdline ||
35 - ! egrep -q '(console|CONSOLE)=(tty1|/dev/tty1)' /proc/cmdline ; then
36 + ! egrep -q '(console=tty1|CONSOLE=/dev/tty1)' /proc/cmdline ; then
37 elog "It is required that you add 'console=tty1' to your kernel"
38 elog "command line parameters."
39 elog ""
40
41
42
43 1.146 media-gfx/splashutils/ChangeLog
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.146&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?rev=1.146&content-type=text/plain
47 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/splashutils/ChangeLog?r1=1.145&r2=1.146
48
49 Index: ChangeLog
50 ===================================================================
51 RCS file: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v
52 retrieving revision 1.145
53 retrieving revision 1.146
54 diff -u -r1.145 -r1.146
55 --- ChangeLog 21 Sep 2008 07:16:19 -0000 1.145
56 +++ ChangeLog 21 Sep 2008 16:32:34 -0000 1.146
57 @@ -1,6 +1,10 @@
58 # ChangeLog for media-gfx/splashutils
59 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
60 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.145 2008/09/21 07:16:19 solar Exp $
61 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/splashutils/ChangeLog,v 1.146 2008/09/21 16:32:34 spock Exp $
62 +
63 + 21 Sep 2008; MichaƂ Januszewski <spock@g.o>
64 + splashutils-1.5.4.2.ebuild:
65 + Fix console=tty1 check to not allow invalid kernel command line options.
66
67 21 Sep 2008; <solar@g.o> splashutils-1.5.4.2.ebuild:
68 - Make cross compile aware. Avoid calls to built_with_use when doing x-compiles