diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-05-27 02:13:48 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-05-27 02:13:48 +0000 |
commit | 7049089b36c6d8af1e54ac2f55810ff7c116c394 (patch) | |
tree | ae4943b2fd98ed855b62f5f80c465edc7b26b902 /games-emulation/stella | |
parent | uclibc updates and fixes from Peter Mazinger (diff) | |
download | historical-7049089b36c6d8af1e54ac2f55810ff7c116c394.tar.gz historical-7049089b36c6d8af1e54ac2f55810ff7c116c394.tar.bz2 historical-7049089b36c6d8af1e54ac2f55810ff7c116c394.zip |
old
Diffstat (limited to 'games-emulation/stella')
-rw-r--r-- | games-emulation/stella/Manifest | 6 | ||||
-rw-r--r-- | games-emulation/stella/files/digest-stella-1.3 | 1 | ||||
-rw-r--r-- | games-emulation/stella/stella-1.3.ebuild | 50 |
3 files changed, 2 insertions, 55 deletions
diff --git a/games-emulation/stella/Manifest b/games-emulation/stella/Manifest index 85639118246a..c15b45bac8f3 100644 --- a/games-emulation/stella/Manifest +++ b/games-emulation/stella/Manifest @@ -1,7 +1,5 @@ -MD5 5af9244b91231a9124ae00e7620ad00e files/digest-stella-1.3 66 -MD5 5af9244b91231a9124ae00e7620ad00e files/digest-stella-1.3-r1 66 -MD5 72f37d51ae26ee356cc4ede6b1438195 files/stella-1.3-alsa-fix.patch 1040 MD5 6e791890091f5a281f214c31b38782e9 ChangeLog 1133 MD5 a0e421876d31ca0f3f5c830f7aac6318 stella-1.3-r1.ebuild 1402 -MD5 281300a177673cbeedb9bd85034fe084 stella-1.3.ebuild 1261 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 +MD5 5af9244b91231a9124ae00e7620ad00e files/digest-stella-1.3-r1 66 +MD5 72f37d51ae26ee356cc4ede6b1438195 files/stella-1.3-alsa-fix.patch 1040 diff --git a/games-emulation/stella/files/digest-stella-1.3 b/games-emulation/stella/files/digest-stella-1.3 deleted file mode 100644 index b3e8bbc9f312..000000000000 --- a/games-emulation/stella/files/digest-stella-1.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 b9318f82a180ff0a404fca78511b2772 stella-1.3-src.tar.gz 433201 diff --git a/games-emulation/stella/stella-1.3.ebuild b/games-emulation/stella/stella-1.3.ebuild deleted file mode 100644 index fa875102f2af..000000000000 --- a/games-emulation/stella/stella-1.3.ebuild +++ /dev/null @@ -1,50 +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.3.ebuild,v 1.3 2004/03/13 16:27:57 wolf31o2 Exp $ - -DESCRIPTION="Stella Atari 2600 VCS Emulator" -HOMEPAGE="http://stella.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86" -IUSE="sdl oss X alsa" - -DEPEND="|| ( - X? ( virtual/x11 ) - sdl? ( media-libs/libsdl ) - virtual/x11 - alsa? ( media-sound/alsa-lib ) - media-libs/libpng - )" - -src_compile() { - # let's just default joystick & snapshot support to on - MYOPTS="JOYSTICK_SUPPORT=1 SNAPSHOT_SUPPORT=1" - - if [ `use alsa` ] ; then - MYOPTS="${MYOPTS} SOUND_ALSA=1" - fi - if [ `use X` ] || [ -z "`use X``use sdl`" ] ; then - cd ${S}/src/build - emake OPTIMIZATIONS="${CFLAGS}" $MYOPTS linux-x || die - fi - if [ `use sdl` ] ; then - cd ${S}/src/build - emake OPTIMIZATIONS="${CFLAGS}" $MYOPTS SOUND_SDL=1 linux-sdl || 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 - - insinto /etc - doins src/stellarc - doins src/emucore/stella.pro - - dohtml -r docs/ - dodoc *.txt -} |