diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-27 08:17:31 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-27 08:17:31 +0000 |
commit | 619a7930544200f2386ad3ead05932b30f07f895 (patch) | |
tree | 483bdf363c7df98dc1a5b95dda3a3db791efcae8 /app-emulation | |
parent | IUSE (diff) | |
download | historical-619a7930544200f2386ad3ead05932b30f07f895.tar.gz historical-619a7930544200f2386ad3ead05932b30f07f895.tar.bz2 historical-619a7930544200f2386ad3ead05932b30f07f895.zip |
dont access $CC
Diffstat (limited to 'app-emulation')
-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 |