diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2007-01-19 02:16:54 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2007-01-19 02:16:54 +0000 |
commit | f99bef89ec923be97091a7c64897d9bfd2ce0b60 (patch) | |
tree | d74cfe552dbdce718daa39df82f4818e88ebda81 /games-emulation | |
parent | version bump (diff) | |
download | gentoo-2-f99bef89ec923be97091a7c64897d9bfd2ce0b60.tar.gz gentoo-2-f99bef89ec923be97091a7c64897d9bfd2ce0b60.tar.bz2 gentoo-2-f99bef89ec923be97091a7c64897d9bfd2ce0b60.zip |
version bump
(Portage version: 2.1.1-r2)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/mamory/ChangeLog | 8 | ||||
-rw-r--r-- | games-emulation/mamory/files/digest-mamory-0.2.23 | 3 | ||||
-rw-r--r-- | games-emulation/mamory/mamory-0.2.23.ebuild | 52 |
3 files changed, 62 insertions, 1 deletions
diff --git a/games-emulation/mamory/ChangeLog b/games-emulation/mamory/ChangeLog index 549be7405295..c2e093ef0d7f 100644 --- a/games-emulation/mamory/ChangeLog +++ b/games-emulation/mamory/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-emulation/mamory # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/mamory/ChangeLog,v 1.18 2007/01/05 20:30:55 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mamory/ChangeLog,v 1.19 2007/01/19 02:16:54 mr_bones_ Exp $ + +*mamory-0.2.23 (19 Jan 2007) + + 19 Jan 2007; Michael Sterrett <mr_bones_@gentoo.org> + +mamory-0.2.23.ebuild: + version bump 05 Jan 2007; Tristan Heaven <nyhm@gentoo.org> mamory-0.2.22.ebuild: Set WANT_AUTOCONF and WANT_AUTOMAKE diff --git a/games-emulation/mamory/files/digest-mamory-0.2.23 b/games-emulation/mamory/files/digest-mamory-0.2.23 new file mode 100644 index 000000000000..193fdaa007fe --- /dev/null +++ b/games-emulation/mamory/files/digest-mamory-0.2.23 @@ -0,0 +1,3 @@ +MD5 8957bc0ec02434e8a49be43be8c280f7 mamory-0.2.23.tar.gz 514258 +RMD160 4f1bf8526c1267211336f7e71bc2041fcf963716 mamory-0.2.23.tar.gz 514258 +SHA256 678d541aed23cd78d70fd473cd450a1dbe697a6bf6e0f4801f85e21d7583d11c mamory-0.2.23.tar.gz 514258 diff --git a/games-emulation/mamory/mamory-0.2.23.ebuild b/games-emulation/mamory/mamory-0.2.23.ebuild new file mode 100644 index 000000000000..6a70b0ca04d8 --- /dev/null +++ b/games-emulation/mamory/mamory-0.2.23.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mamory/mamory-0.2.23.ebuild,v 1.1 2007/01/19 02:16:54 mr_bones_ Exp $ + +WANT_AUTOCONF=latest +WANT_AUTOMAKE=latest +inherit autotools games + +DESCRIPTION="ROM management tools and library" +HOMEPAGE="http://mamory.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ppc x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_unpack() { + unpack ${A} + cd "${S}" + + # Remove hardcoded CFLAGS options + sed -i \ + -e '/AC_ARG_ENABLE(debug,/ {N;N;N;d}' \ + configure.ac \ + || die "sed failed" + + # Make it possible for eautoreconf to fix fPIC etc. + sed -i \ + -e '/libcommon_la_LDFLAGS= -static/d' \ + common/Makefile.am \ + || die "sed failed" + + AT_M4DIR="config" eautoreconf || die +} + +src_compile() { + egamesconf \ + --disable-dependency-tracking \ + --includedir=/usr/include || die + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog README TODO + dohtml DOCS/mamory.html + prepgamesdirs +} |