Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/linux-logo: ChangeLog linux-logo-5.03.ebuild
Date: Wed, 15 Oct 2008 17:39:07
Message-Id: E1KqAKu-0007En-5K@stork.gentoo.org
1 flameeyes 08/10/15 17:39:04
2
3 Modified: ChangeLog linux-logo-5.03.ebuild
4 Log:
5 Don't use a sed command, override CFLAGS at make.
6 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
7
8 Revision Changes Path
9 1.61 app-misc/linux-logo/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/linux-logo/ChangeLog?rev=1.61&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/linux-logo/ChangeLog?rev=1.61&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/linux-logo/ChangeLog?r1=1.60&r2=1.61
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-misc/linux-logo/ChangeLog,v
18 retrieving revision 1.60
19 retrieving revision 1.61
20 diff -u -r1.60 -r1.61
21 --- ChangeLog 10 Sep 2008 21:05:34 -0000 1.60
22 +++ ChangeLog 15 Oct 2008 17:39:04 -0000 1.61
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-misc/linux-logo
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-misc/linux-logo/ChangeLog,v 1.60 2008/09/10 21:05:34 spock Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-misc/linux-logo/ChangeLog,v 1.61 2008/10/15 17:39:04 flameeyes Exp $
28 +
29 + 15 Oct 2008; Diego Pettenò <flameeyes@g.o> linux-logo-5.03.ebuild:
30 + Don't use a sed command, override CFLAGS at make.
31
32 10 Sep 2008; Michał Januszewski <spock@g.o>
33 -files/linux-logo-4.07-gentoo-logo.patch, -linux-logo-4.12.ebuild,
34
35
36
37 1.6 app-misc/linux-logo/linux-logo-5.03.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/linux-logo/linux-logo-5.03.ebuild?rev=1.6&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/linux-logo/linux-logo-5.03.ebuild?rev=1.6&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/linux-logo/linux-logo-5.03.ebuild?r1=1.5&r2=1.6
42
43 Index: linux-logo-5.03.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/app-misc/linux-logo/linux-logo-5.03.ebuild,v
46 retrieving revision 1.5
47 retrieving revision 1.6
48 diff -u -r1.5 -r1.6
49 --- linux-logo-5.03.ebuild 27 Mar 2008 22:58:13 -0000 1.5
50 +++ linux-logo-5.03.ebuild 15 Oct 2008 17:39:04 -0000 1.6
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/app-misc/linux-logo/linux-logo-5.03.ebuild,v 1.5 2008/03/27 22:58:13 jer Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/app-misc/linux-logo/linux-logo-5.03.ebuild,v 1.6 2008/10/15 17:39:04 flameeyes Exp $
56
57 inherit eutils
58
59 @@ -35,8 +35,7 @@
60
61 src_compile() {
62 ./configure --prefix="${D}"/usr || die
63 - sed -i -e "s/CFLAGS=.*/CFLAGS=${CFLAGS}/" {,libsysinfo-*/}Makefile.default
64 - emake || die
65 + emake CFLAGS="${CFLAGS}" || die
66 }
67
68 src_install() {