summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-05-10 17:45:04 +0000
committerMike Frysinger <vapier@gentoo.org>2004-05-10 17:45:04 +0000
commit6d87ebae2414687d33a5c5553611228c39f3da2d (patch)
treea22536dbbe63f5d9ec52d5ffe507178d90ec3f1f /games-emulation/stella
parentdont use $CC (diff)
downloadhistorical-6d87ebae2414687d33a5c5553611228c39f3da2d.tar.gz
historical-6d87ebae2414687d33a5c5553611228c39f3da2d.tar.bz2
historical-6d87ebae2414687d33a5c5553611228c39f3da2d.zip
old
Diffstat (limited to 'games-emulation/stella')
-rw-r--r--games-emulation/stella/files/digest-stella-1.21
-rw-r--r--games-emulation/stella/stella-1.2.ebuild47
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
-}