diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2007-11-02 22:43:20 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2007-11-02 22:43:20 +0000 |
commit | 55a433c8a159db568670409a99e44582720a3842 (patch) | |
tree | 906ddd08b89f8b084afc2160af34df2f3db9e412 /games-emulation | |
parent | stable ppc, bug #193991 (diff) | |
download | gentoo-2-55a433c8a159db568670409a99e44582720a3842.tar.gz gentoo-2-55a433c8a159db568670409a99e44582720a3842.tar.bz2 gentoo-2-55a433c8a159db568670409a99e44582720a3842.zip |
Version bump to 2.4.2
(Portage version: 2.1.3.16)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/stella/ChangeLog | 7 | ||||
-rw-r--r-- | games-emulation/stella/files/digest-stella-2.4.2 | 3 | ||||
-rw-r--r-- | games-emulation/stella/stella-2.4.2.ebuild | 48 |
3 files changed, 57 insertions, 1 deletions
diff --git a/games-emulation/stella/ChangeLog b/games-emulation/stella/ChangeLog index 5460f3bcd9de..3ee0dc53348a 100644 --- a/games-emulation/stella/ChangeLog +++ b/games-emulation/stella/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-emulation/stella # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/ChangeLog,v 1.24 2007/08/21 03:20:52 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/ChangeLog,v 1.25 2007/11/02 22:43:19 tupone Exp $ + +*stella-2.4.2 (02 Nov 2007) + + 02 Nov 2007; Tupone Alfredo <tupone@gentoo.org> +stella-2.4.2.ebuild: + Version bump *stella-2.4 (21 Aug 2007) diff --git a/games-emulation/stella/files/digest-stella-2.4.2 b/games-emulation/stella/files/digest-stella-2.4.2 new file mode 100644 index 000000000000..f1430c632e13 --- /dev/null +++ b/games-emulation/stella/files/digest-stella-2.4.2 @@ -0,0 +1,3 @@ +MD5 c5a6ba38151a5b961a3f74befe0a6bc2 stella-2.4.2-src.tar.gz 1203083 +RMD160 dbfb634b6ca4c5573914248b47d50cc52f9a619b stella-2.4.2-src.tar.gz 1203083 +SHA256 52a2c07575c0d569a587d734e7853f40901560c277bfa5cca19942dfaf5782d2 stella-2.4.2-src.tar.gz 1203083 diff --git a/games-emulation/stella/stella-2.4.2.ebuild b/games-emulation/stella/stella-2.4.2.ebuild new file mode 100644 index 000000000000..105a1860c3ac --- /dev/null +++ b/games-emulation/stella/stella-2.4.2.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/stella-2.4.2.ebuild,v 1.1 2007/11/02 22:43:19 tupone Exp $ + +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 + media-libs/libpng + opengl? ( virtual/opengl )" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e '/INSTALL/s/-s //' \ + -e '/strip/d' \ + -e "/icons/d" \ + Makefile \ + || die "sed failed" +} + +src_compile() { + # not an autoconf script + ./configure \ + --prefix="/usr" \ + --bindir="${GAMES_BINDIR}" \ + --docdir="/usr/share/doc/${PF}" \ + --datadir="${GAMES_DATADIR}" \ + $(use_enable opengl) \ + || die + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + doicon src/common/stella.xpm + make_desktop_entry stella Stella stella.xpm + prepgamesdirs +} |