diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-31 07:14:08 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-31 07:14:08 +0000 |
commit | 1e3988f3a44cd1748d00c11bf228066530cbbb54 (patch) | |
tree | b61254a441142d0d41383747658006721b4c3c2f /games-emulation | |
parent | don't rdepend on nasm (diff) | |
download | historical-1e3988f3a44cd1748d00c11bf228066530cbbb54.tar.gz historical-1e3988f3a44cd1748d00c11bf228066530cbbb54.tar.bz2 historical-1e3988f3a44cd1748d00c11bf228066530cbbb54.zip |
version bump
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/gngeo/ChangeLog | 9 | ||||
-rw-r--r-- | games-emulation/gngeo/Manifest | 5 | ||||
-rw-r--r-- | games-emulation/gngeo/files/digest-gngeo-0.6.1 | 1 | ||||
-rw-r--r-- | games-emulation/gngeo/gngeo-0.6.1.ebuild | 47 |
4 files changed, 59 insertions, 3 deletions
diff --git a/games-emulation/gngeo/ChangeLog b/games-emulation/gngeo/ChangeLog index c5659e2768bc..7a455bc68388 100644 --- a/games-emulation/gngeo/ChangeLog +++ b/games-emulation/gngeo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-emulation/gngeo -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngeo/ChangeLog,v 1.2 2003/09/10 15:58:48 vapier Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngeo/ChangeLog,v 1.3 2004/03/31 07:14:07 mr_bones_ Exp $ + +*gngeo-0.6.1 (30 Mar 2004) + + 30 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> gngeo-0.6.1.ebuild: + version bump *gngeo-0.5.9a (29 Jul 2003) diff --git a/games-emulation/gngeo/Manifest b/games-emulation/gngeo/Manifest index e2941cd3ad70..943bad2e830e 100644 --- a/games-emulation/gngeo/Manifest +++ b/games-emulation/gngeo/Manifest @@ -1,3 +1,6 @@ -MD5 edab98a35630bb340da798cf9ca30201 ChangeLog 387 +MD5 18c442c7d09962094d86aa7ab5761615 ChangeLog 509 MD5 182dcad1a877b702ef79f242f3fd01fd gngeo-0.5.9a.ebuild 727 +MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 +MD5 8ff1673c8739f02f9c1532f6d2271cbb gngeo-0.6.1.ebuild 1083 MD5 891c5cfcc44ce184f67c53904f2ddf88 files/digest-gngeo-0.5.9a 64 +MD5 668179e7c39e1fd2e3c7bfbe624c70b1 files/digest-gngeo-0.6.1 63 diff --git a/games-emulation/gngeo/files/digest-gngeo-0.6.1 b/games-emulation/gngeo/files/digest-gngeo-0.6.1 new file mode 100644 index 000000000000..1d5776340584 --- /dev/null +++ b/games-emulation/gngeo/files/digest-gngeo-0.6.1 @@ -0,0 +1 @@ +MD5 c25e38ee9388439364620c5afb6dc0a4 gngeo-0.6.1.tar.gz 489487 diff --git a/games-emulation/gngeo/gngeo-0.6.1.ebuild b/games-emulation/gngeo/gngeo-0.6.1.ebuild new file mode 100644 index 000000000000..946d9073db57 --- /dev/null +++ b/games-emulation/gngeo/gngeo-0.6.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngeo/gngeo-0.6.1.ebuild,v 1.1 2004/03/31 07:14:07 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="A NeoGeo emulator" +HOMEPAGE="http://m.peponas.free.fr/gngeo/" +SRC_URI="http://m.peponas.free.fr/gngeo/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc" +IUSE="" + +RDEPEND="virtual/glibc + virtual/opengl + sys-libs/zlib + media-libs/sdl-image + >=media-libs/libsdl-1.2" +DEPEND="${RDEPEND} + >=sys-apps/sed-4 + x86? ( >=dev-lang/nasm-0.98 )" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i \ + -e "s/-malign-functions/-falign-functions/" \ + -e "s/-malign-loops/-falign-loops/" \ + -e "s/-malign-jumps/-falign-jumps/" \ + configure \ + || die "sed failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS NEWS README sample_gngeorc + prepgamesdirs +} + +pkg_postinst() { + games_pkg_postinst + echo + einfo "A licensed NeoGeo BIOS copy is required to run the emulator." + echo +} |