diff options
author | Christoph Mende <angelos@gentoo.org> | 2008-12-30 19:10:50 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2008-12-30 19:10:50 +0000 |
commit | a3d80755111e72cf81cadd620e7c491d22ca9e14 (patch) | |
tree | 9e60bbba289cff88bb0a4a6d3b57ddc3d992979b /app-emulation/frodo | |
parent | QA: Respect CC (bug 243578) and CFLAGS/LDFLAGS (bug 240003) (diff) | |
download | gentoo-2-a3d80755111e72cf81cadd620e7c491d22ca9e14.tar.gz gentoo-2-a3d80755111e72cf81cadd620e7c491d22ca9e14.tar.bz2 gentoo-2-a3d80755111e72cf81cadd620e7c491d22ca9e14.zip |
QA: Respect CC (bug 243580)
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
Diffstat (limited to 'app-emulation/frodo')
-rw-r--r-- | app-emulation/frodo/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/frodo/frodo-4.1b.ebuild | 11 |
2 files changed, 9 insertions, 7 deletions
diff --git a/app-emulation/frodo/ChangeLog b/app-emulation/frodo/ChangeLog index 09a23246d35d..3499080f15b1 100644 --- a/app-emulation/frodo/ChangeLog +++ b/app-emulation/frodo/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/frodo # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/frodo/ChangeLog,v 1.12 2008/06/18 01:46:34 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/frodo/ChangeLog,v 1.13 2008/12/30 19:10:50 angelos Exp $ + + 30 Dec 2008; Christoph Mende <angelos@gentoo.org> frodo-4.1b.ebuild: + QA: Respect CC (bug 243580) 18 Jun 2008; Jeremy Olexa <darkside@gentoo.org> frodo-4.1b.ebuild: Actually cd to where the configure script is. bug #227099 diff --git a/app-emulation/frodo/frodo-4.1b.ebuild b/app-emulation/frodo/frodo-4.1b.ebuild index 0321f037f642..3d18583f2092 100644 --- a/app-emulation/frodo/frodo-4.1b.ebuild +++ b/app-emulation/frodo/frodo-4.1b.ebuild @@ -1,10 +1,9 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/frodo/frodo-4.1b.ebuild,v 1.4 2008/06/18 01:46:34 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/frodo/frodo-4.1b.ebuild,v 1.5 2008/12/30 19:10:50 angelos Exp $ WANT_AUTOCONF="2.5" -WANT_AUTOMAKE="latest" -inherit eutils flag-o-matic autotools +inherit eutils flag-o-matic autotools toolchain-funcs DESCRIPTION="An excellent Commodore 64 Emulator" HOMEPAGE="http://frodo.cebix.net/" @@ -33,10 +32,10 @@ src_unpack() { } src_compile() { - cd "${S}"/Src + cd Src append-flags "-DX_USE_SHM" - econf || die - emake || die "emake failed" + econf + emake CC="$(tc-getCC)" || die "emake failed" } src_install() { |