diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-09 16:28:07 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-09 16:28:07 +0000 |
commit | 4449c749e4d0a531f4dffcd6bd11772e59ecbf81 (patch) | |
tree | 47ac23a46562d1736503b9b2447f81b34199c04e /games-emulation/stella | |
parent | New package - rename. (diff) | |
download | historical-4449c749e4d0a531f4dffcd6bd11772e59ecbf81.tar.gz historical-4449c749e4d0a531f4dffcd6bd11772e59ecbf81.tar.bz2 historical-4449c749e4d0a531f4dffcd6bd11772e59ecbf81.zip |
welcome to games-emulation
Diffstat (limited to 'games-emulation/stella')
-rw-r--r-- | games-emulation/stella/ChangeLog | 13 | ||||
-rw-r--r-- | games-emulation/stella/Manifest | 5 | ||||
-rw-r--r-- | games-emulation/stella/files/digest-stella-1.2 | 1 | ||||
-rw-r--r-- | games-emulation/stella/files/digest-stella-1.3 | 1 | ||||
-rw-r--r-- | games-emulation/stella/stella-1.2.ebuild | 47 | ||||
-rw-r--r-- | games-emulation/stella/stella-1.3.ebuild | 50 |
6 files changed, 117 insertions, 0 deletions
diff --git a/games-emulation/stella/ChangeLog b/games-emulation/stella/ChangeLog new file mode 100644 index 000000000000..f82694677adb --- /dev/null +++ b/games-emulation/stella/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for app-emulation/stella +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/ChangeLog,v 1.1 2003/09/09 16:26:50 vapier Exp $ + +*stella-1.3 (14 Apr 2003) + + 14 Apr 2003; Martin Holzer <mholzer@gentoo.org> Manifest, stella-1.3.ebuild: + Version bumped. Ebuild submitted by Chris Ripp (chris@ripp.net) in #18838. + +*stella-1.2 (09 Mar 2003) + + 09 Mar 2003; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by Chris Ripp <chris@ripp.net> #15765. diff --git a/games-emulation/stella/Manifest b/games-emulation/stella/Manifest new file mode 100644 index 000000000000..99be97379d80 --- /dev/null +++ b/games-emulation/stella/Manifest @@ -0,0 +1,5 @@ +MD5 4ed8ab29f9d3ab27873b12516dfd9fdf files/digest-stella-1.2 66 +MD5 5af9244b91231a9124ae00e7620ad00e files/digest-stella-1.3 66 +MD5 12d7455ad9a7af4b39cfc6fa077c61d9 stella-1.2.ebuild 1112 +MD5 0a275fd8b43e1cd300fdbd72f2a7abee ChangeLog 561 +MD5 8b1f9cca8226ec765e86733ff067e9f5 stella-1.3.ebuild 1258 diff --git a/games-emulation/stella/files/digest-stella-1.2 b/games-emulation/stella/files/digest-stella-1.2 new file mode 100644 index 000000000000..b0cb617f900e --- /dev/null +++ b/games-emulation/stella/files/digest-stella-1.2 @@ -0,0 +1 @@ +MD5 2c24c0fa2655a597b9e04742485e5ed8 stella-1.2-src.tar.gz 393923 diff --git a/games-emulation/stella/files/digest-stella-1.3 b/games-emulation/stella/files/digest-stella-1.3 new file mode 100644 index 000000000000..b3e8bbc9f312 --- /dev/null +++ b/games-emulation/stella/files/digest-stella-1.3 @@ -0,0 +1 @@ +MD5 b9318f82a180ff0a404fca78511b2772 stella-1.3-src.tar.gz 433201 diff --git a/games-emulation/stella/stella-1.2.ebuild b/games-emulation/stella/stella-1.2.ebuild new file mode 100644 index 000000000000..7160d64754da --- /dev/null +++ b/games-emulation/stella/stella-1.2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2003 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.1 2003/09/09 16:26:50 vapier 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 +} diff --git a/games-emulation/stella/stella-1.3.ebuild b/games-emulation/stella/stella-1.3.ebuild new file mode 100644 index 000000000000..7f987b78d390 --- /dev/null +++ b/games-emulation/stella/stella-1.3.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2003 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.1 2003/09/09 16:26:50 vapier 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-driver ) + 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 +} |