diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-05-10 17:45:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-05-10 17:45:04 +0000 |
commit | d6a51a66629e7a993027a2030570956a6c265274 (patch) | |
tree | 28a29751485de5c642b9e264dc2c81335ddd82e3 /games-emulation/stella | |
parent | dont use $CC (diff) | |
download | gentoo-2-d6a51a66629e7a993027a2030570956a6c265274.tar.gz gentoo-2-d6a51a66629e7a993027a2030570956a6c265274.tar.bz2 gentoo-2-d6a51a66629e7a993027a2030570956a6c265274.zip |
old
Diffstat (limited to 'games-emulation/stella')
-rw-r--r-- | games-emulation/stella/files/digest-stella-1.2 | 1 | ||||
-rw-r--r-- | games-emulation/stella/stella-1.2.ebuild | 47 |
2 files changed, 0 insertions, 48 deletions
diff --git a/games-emulation/stella/files/digest-stella-1.2 b/games-emulation/stella/files/digest-stella-1.2 deleted file mode 100644 index b0cb617f900e..000000000000 --- a/games-emulation/stella/files/digest-stella-1.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 2c24c0fa2655a597b9e04742485e5ed8 stella-1.2-src.tar.gz 393923 diff --git a/games-emulation/stella/stella-1.2.ebuild b/games-emulation/stella/stella-1.2.ebuild deleted file mode 100644 index e1a8fa299bd9..000000000000 --- a/games-emulation/stella/stella-1.2.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/stella-1.2.ebuild,v 1.2 2004/02/03 21:46:25 mr_bones_ Exp $ - -DESCRIPTION="Stella Atari 2600 VCS Emulator" -HOMEPAGE="http://stella.sourceforge.net/" -SRC_URI="mirror://sourceforge/stella/${P}-src.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86" -IUSE="sdl oss X" - -DEPEND="|| ( - X? ( virtual/x11 ) - sdl? ( media-libs/libsdl ) - virtual/x11 - )" - -src_compile() { - if [ `use X` ] || [ -z "`use X``use sdl`" ] ; then - cd ${S}/src/build - emake OPTIMIZATIONS="${CFLAGS}" linux-x || die - fi - if [ `use sdl` ] ; then - cd ${S}/src/build - emake OPTIMIZATIONS="${CFLAGS}" linux-sdl || die - fi - - if [ `use oss` ] ; then - cd ${S}/src/ui/sound - emake CC="${CC} ${CFLAGS}" linux || die - fi -} - -src_install() { - use X && dobin src/build/stella.x11 - use sdl && dobin src/build/stella.sdl - [ -z "`use X``use sdl`" ] && dobin src/build/stella.x11 - use oss && dobin src/ui/sound/stella-sound - - insinto /etc - doins src/stellarc - - dohtml -r docs/ - dodoc *.txt -} |