Gentoo Archives: gentoo-commits

From: "Christoph Mende (angelos)" <angelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/frodo: ChangeLog frodo-4.1b.ebuild
Date: Tue, 30 Dec 2008 19:10:53
Message-Id: E1LHjzO-00039E-FM@stork.gentoo.org
1 angelos 08/12/30 19:10:50
2
3 Modified: ChangeLog frodo-4.1b.ebuild
4 Log:
5 QA: Respect CC (bug 243580)
6 (Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
7
8 Revision Changes Path
9 1.13 app-emulation/frodo/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/frodo/ChangeLog?rev=1.13&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/frodo/ChangeLog?rev=1.13&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/frodo/ChangeLog?r1=1.12&r2=1.13
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-emulation/frodo/ChangeLog,v
18 retrieving revision 1.12
19 retrieving revision 1.13
20 diff -u -r1.12 -r1.13
21 --- ChangeLog 18 Jun 2008 01:46:34 -0000 1.12
22 +++ ChangeLog 30 Dec 2008 19:10:50 -0000 1.13
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-emulation/frodo
25 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/frodo/ChangeLog,v 1.12 2008/06/18 01:46:34 darkside Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/frodo/ChangeLog,v 1.13 2008/12/30 19:10:50 angelos Exp $
28 +
29 + 30 Dec 2008; Christoph Mende <angelos@g.o> frodo-4.1b.ebuild:
30 + QA: Respect CC (bug 243580)
31
32 18 Jun 2008; Jeremy Olexa <darkside@g.o> frodo-4.1b.ebuild:
33 Actually cd to where the configure script is. bug #227099
34
35
36
37 1.5 app-emulation/frodo/frodo-4.1b.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/frodo/frodo-4.1b.ebuild?rev=1.5&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/frodo/frodo-4.1b.ebuild?rev=1.5&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/frodo/frodo-4.1b.ebuild?r1=1.4&r2=1.5
42
43 Index: frodo-4.1b.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/app-emulation/frodo/frodo-4.1b.ebuild,v
46 retrieving revision 1.4
47 retrieving revision 1.5
48 diff -u -r1.4 -r1.5
49 --- frodo-4.1b.ebuild 18 Jun 2008 01:46:34 -0000 1.4
50 +++ frodo-4.1b.ebuild 30 Dec 2008 19:10:50 -0000 1.5
51 @@ -1,10 +1,9 @@
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-emulation/frodo/frodo-4.1b.ebuild,v 1.4 2008/06/18 01:46:34 darkside Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/frodo/frodo-4.1b.ebuild,v 1.5 2008/12/30 19:10:50 angelos Exp $
56
57 WANT_AUTOCONF="2.5"
58 -WANT_AUTOMAKE="latest"
59 -inherit eutils flag-o-matic autotools
60 +inherit eutils flag-o-matic autotools toolchain-funcs
61
62 DESCRIPTION="An excellent Commodore 64 Emulator"
63 HOMEPAGE="http://frodo.cebix.net/"
64 @@ -33,10 +32,10 @@
65 }
66
67 src_compile() {
68 - cd "${S}"/Src
69 + cd Src
70 append-flags "-DX_USE_SHM"
71 - econf || die
72 - emake || die "emake failed"
73 + econf
74 + emake CC="$(tc-getCC)" || die "emake failed"
75 }
76
77 src_install() {