Gentoo Archives: gentoo-commits

From: "Michael Januszewski (spock)" <spock@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, 29 Oct 2008 17:27:40
Message-Id: E1KvEpT-0001dL-AN@stork.gentoo.org
1 spock 08/10/29 17:27:35
2
3 Modified: ChangeLog linux-logo-5.03.ebuild
4 Log:
5 Fix bug #243654 (respect the CC variable).
6 (Portage version: 2.2_rc12/cvs/Linux 2.6.27 x86_64)
7
8 Revision Changes Path
9 1.62 app-misc/linux-logo/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/linux-logo/ChangeLog?rev=1.62&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/linux-logo/ChangeLog?rev=1.62&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/linux-logo/ChangeLog?r1=1.61&r2=1.62
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-misc/linux-logo/ChangeLog,v
18 retrieving revision 1.61
19 retrieving revision 1.62
20 diff -u -r1.61 -r1.62
21 --- ChangeLog 15 Oct 2008 17:39:04 -0000 1.61
22 +++ ChangeLog 29 Oct 2008 17:27:35 -0000 1.62
23 @@ -1,6 +1,10 @@
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.61 2008/10/15 17:39:04 flameeyes Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-misc/linux-logo/ChangeLog,v 1.62 2008/10/29 17:27:35 spock Exp $
28 +
29 + 29 Oct 2008; Michał Januszewski <spock@g.o>
30 + linux-logo-5.03.ebuild:
31 + Fix bug #243654 (respect the CC variable).
32
33 15 Oct 2008; Diego Pettenò <flameeyes@g.o> linux-logo-5.03.ebuild:
34 Don't use a sed command, override CFLAGS at make.
35
36
37
38 1.7 app-misc/linux-logo/linux-logo-5.03.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/linux-logo/linux-logo-5.03.ebuild?rev=1.7&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/linux-logo/linux-logo-5.03.ebuild?rev=1.7&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/linux-logo/linux-logo-5.03.ebuild?r1=1.6&r2=1.7
43
44 Index: linux-logo-5.03.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-misc/linux-logo/linux-logo-5.03.ebuild,v
47 retrieving revision 1.6
48 retrieving revision 1.7
49 diff -u -r1.6 -r1.7
50 --- linux-logo-5.03.ebuild 15 Oct 2008 17:39:04 -0000 1.6
51 +++ linux-logo-5.03.ebuild 29 Oct 2008 17:27:35 -0000 1.7
52 @@ -1,8 +1,8 @@
53 # Copyright 1999-2008 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
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 +# $Header: /var/cvsroot/gentoo-x86/app-misc/linux-logo/linux-logo-5.03.ebuild,v 1.7 2008/10/29 17:27:35 spock Exp $
57
58 -inherit eutils
59 +inherit eutils toolchain-funcs
60
61 MY_P=${PN/-/_}-${PV}
62 S=${WORKDIR}/${MY_P}
63 @@ -35,7 +35,7 @@
64
65 src_compile() {
66 ./configure --prefix="${D}"/usr || die
67 - emake CFLAGS="${CFLAGS}" || die
68 + emake CFLAGS="${CFLAGS}" CC="$(tc-getCC)" || die
69 }
70
71 src_install() {