diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-27 08:18:03 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-27 08:18:03 +0000 |
commit | eda9985650078b9acb2ef686772e7272c22335dd (patch) | |
tree | b93d7958d03d9c9128a4e1014d800b25c899c847 /app-emulation/xtrs | |
parent | IUSE (Manifest recommit) (diff) | |
download | gentoo-2-eda9985650078b9acb2ef686772e7272c22335dd.tar.gz gentoo-2-eda9985650078b9acb2ef686772e7272c22335dd.tar.bz2 gentoo-2-eda9985650078b9acb2ef686772e7272c22335dd.zip |
dont access $CC
Diffstat (limited to 'app-emulation/xtrs')
-rw-r--r-- | app-emulation/xtrs/xtrs-4.9.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app-emulation/xtrs/xtrs-4.9.ebuild b/app-emulation/xtrs/xtrs-4.9.ebuild index ff738d0b3905..8da5f801088d 100644 --- a/app-emulation/xtrs/xtrs-4.9.ebuild +++ b/app-emulation/xtrs/xtrs-4.9.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/xtrs/xtrs-4.9.ebuild,v 1.11 2004/03/19 03:37:06 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xtrs/xtrs-4.9.ebuild,v 1.12 2004/04/27 08:17:31 vapier Exp $ -inherit eutils +inherit eutils gcc DESCRIPTION="RadioShack TRS80 Emulator, inc. FreeWare ROM & LDOS Image" HOMEPAGE="http://www.tim-mann.org/trs80.html" @@ -10,15 +10,15 @@ SRC_URI="http://home.gwi.net/~plemon/sources/${P}.tar.gz http://home.gwi.net/~plemon/support/disks/xtrs/ld4-631.tar.gz" LICENSE="GPL-2" -KEYWORDS="x86" SLOT="0" +KEYWORDS="x86" IUSE="" DEPEND="sys-libs/ncurses sys-libs/readline virtual/x11" -src_unpack () { +src_unpack() { ### make doesn't play nicely with the usual ${PREFIX} behaviour, but relies ### on an external Makefile.local to set compiletime options, and default ### behavious. we'll patch it here, to make our install sane. @@ -28,10 +28,10 @@ src_unpack () { } src_compile() { - emake DEBUG="${CFLAGS}" CC="${CC}" || die "emake failed" + emake DEBUG="${CFLAGS}" CC="$(gcc-getCC)" || die "emake failed" } -src_install () { +src_install() { dodir /usr/bin /usr/share/xtrs/disks /usr/share/man/man1 make install || die "make install failed" dodoc README xtrsrom4p.README |