summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2010-06-07 22:40:40 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2010-06-07 22:40:40 +0000
commit4470249cd258c7d8803309b134cfb4098b08283d (patch)
treec4f6bf332a4c61f195aa4688dbea188958547f94 /games-emulation
parentold (diff)
downloadgentoo-2-4470249cd258c7d8803309b134cfb4098b08283d.tar.gz
gentoo-2-4470249cd258c7d8803309b134cfb4098b08283d.tar.bz2
gentoo-2-4470249cd258c7d8803309b134cfb4098b08283d.zip
old
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'games-emulation')
-rw-r--r--games-emulation/stella/Manifest2
-rw-r--r--games-emulation/stella/stella-3.0.ebuild50
2 files changed, 0 insertions, 52 deletions
diff --git a/games-emulation/stella/Manifest b/games-emulation/stella/Manifest
index 55d49b3afa5e..e0c030acef9d 100644
--- a/games-emulation/stella/Manifest
+++ b/games-emulation/stella/Manifest
@@ -1,6 +1,4 @@
-DIST stella-3.0-src.tar.gz 1506447 RMD160 869cb786aea61704d83c211e4dc34eef1c804b01 SHA1 965b7ab8f51f60c09e8942f2636db627e689cae5 SHA256 8812cd5ae168a15105cd39e6293dc3138a0a7f54f8fec35574590ab6dfb4a6c0
DIST stella-3.1-src.tar.gz 1696487 RMD160 b198394d9dcab7c68a8bffcd5fd193431b25c727 SHA1 bd1dfd730c52c554677f828867ab25bd6013dfc9 SHA256 ef56d36afdee8981dd9b8b8391605070fd2efe26f51385309bad76568689b7c7
-EBUILD stella-3.0.ebuild 1211 RMD160 ff85e1767503d10080aa081ace7739173d97ce64 SHA1 ea775abf158b321a23b1014058bade51c41743f8 SHA256 df720d436b84ed711b1dea4a672cb2bbe75a5014c68d7a9fd773102fa61f771d
EBUILD stella-3.1.ebuild 1221 RMD160 72edc75d60392810622f1ac469b695016e4a3873 SHA1 4f02304cb21cc1566fa92db7de040503c6a4df4a SHA256 1f42a418c2a325505a44735f22bc9f48cae68622b64826443baf3531deefb49b
MISC ChangeLog 6128 RMD160 a81926e010c8dce1369867a859719b095bd5f338 SHA1 d8c02cc9d75d133e73214bc9a000bbe8cc7555f5 SHA256 ca81a3104a7eaa065d7e4c021816e6ed6565f13c05e67484cf2a27bce08804a4
MISC metadata.xml 158 RMD160 cbd9984bb6b426c8c9cee5022fe0a26261612fea SHA1 be5251fa1dacef5c41b74761bb1c8c54fb633b9e SHA256 1423a4fdd4a79b1728a2056d9e300f7e1074253095d82726218d9e9b953888a3
diff --git a/games-emulation/stella/stella-3.0.ebuild b/games-emulation/stella/stella-3.0.ebuild
deleted file mode 100644
index 9a1b51e3fecd..000000000000
--- a/games-emulation/stella/stella-3.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/stella-3.0.ebuild,v 1.3 2010/01/06 13:36:30 josejx Exp $
-
-EAPI=2
-inherit eutils games
-
-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="~amd64 ppc x86"
-IUSE="opengl"
-
-DEPEND="media-libs/libsdl
- sys-libs/zlib
- opengl? ( virtual/opengl )"
-
-src_prepare() {
- sed -i \
- -e '/INSTALL/s/-s //' \
- -e '/STRIP/d' \
- -e "/icons/d" \
- -e '/INSTALL.*DOCDIR/d' \
- -e '/INSTALL.*\/applications/d' \
- Makefile \
- || die "sed failed"
-}
-
-src_configure() {
- # not an autoconf script
- ./configure \
- --prefix="/usr" \
- --bindir="${GAMES_BINDIR}" \
- --docdir="/usr/share/doc/${PF}" \
- --datadir="${GAMES_DATADIR}" \
- $(use_enable opengl gl) \
- || die
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- doicon src/common/stella.png
- make_desktop_entry stella Stella
- dohtml -r docs/*
- dodoc Announce.txt Changes.txt Copyright.txt README-GP2X.txt README-SDL.txt Readme.txt Todo.txt
- prepgamesdirs
-}