diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-12-28 21:59:20 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-12-28 21:59:20 +0000 |
commit | dd9527e66e64b627c6fb8eee96209c865c878266 (patch) | |
tree | 22dcdc9c011e3c7d9a42cc787d3409c45688fc5e /games-emulation | |
parent | Stable for HPPA (bug #158576). (diff) | |
download | gentoo-2-dd9527e66e64b627c6fb8eee96209c865c878266.tar.gz gentoo-2-dd9527e66e64b627c6fb8eee96209c865c878266.tar.bz2 gentoo-2-dd9527e66e64b627c6fb8eee96209c865c878266.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.22 | 3 | ||||
-rw-r--r-- | games-emulation/mamory/mamory-0.2.22.ebuild | 51 |
3 files changed, 61 insertions, 1 deletions
diff --git a/games-emulation/mamory/ChangeLog b/games-emulation/mamory/ChangeLog index e733b02e777c..76828173de5f 100644 --- a/games-emulation/mamory/ChangeLog +++ b/games-emulation/mamory/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-emulation/mamory # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/mamory/ChangeLog,v 1.16 2006/08/23 18:42:17 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mamory/ChangeLog,v 1.17 2006/12/28 21:59:20 mr_bones_ Exp $ + +*mamory-0.2.22 (28 Dec 2006) + + 28 Dec 2006; Michael Sterrett <mr_bones_@gentoo.org> + +mamory-0.2.22.ebuild: + version bump *mamory-0.2.21 (23 Aug 2006) diff --git a/games-emulation/mamory/files/digest-mamory-0.2.22 b/games-emulation/mamory/files/digest-mamory-0.2.22 new file mode 100644 index 000000000000..e48bba07108c --- /dev/null +++ b/games-emulation/mamory/files/digest-mamory-0.2.22 @@ -0,0 +1,3 @@ +MD5 bda24c8ddf0ddf7e9c125bec38840c9f mamory-0.2.22.tar.gz 512255 +RMD160 1e541cb990daaafdf48c69cc8ac24d6768e32648 mamory-0.2.22.tar.gz 512255 +SHA256 4ca26c89f517b726220c27463ce8b214e475129e56184006429b2ace9d53354f mamory-0.2.22.tar.gz 512255 diff --git a/games-emulation/mamory/mamory-0.2.22.ebuild b/games-emulation/mamory/mamory-0.2.22.ebuild new file mode 100644 index 000000000000..431c77be1449 --- /dev/null +++ b/games-emulation/mamory/mamory-0.2.22.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mamory/mamory-0.2.22.ebuild,v 1.1 2006/12/28 21:59:20 mr_bones_ Exp $ + +inherit autotools games + +DESCRIPTION="rom management tools and library" +HOMEPAGE="http://mamory.sourceforge.net/" +SRC_URI="mirror://sourceforge/mamory/${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.in \ + || 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 +} |