diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-08-18 18:42:51 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-08-18 18:42:51 +0000 |
commit | 2aca9262ec92db17a0ba817b337be0f288904efe (patch) | |
tree | ba4a1e5f9adac5f852fe5972324f95f5c1bd87b7 /games-emulation | |
parent | old (diff) | |
download | gentoo-2-2aca9262ec92db17a0ba817b337be0f288904efe.tar.gz gentoo-2-2aca9262ec92db17a0ba817b337be0f288904efe.tar.bz2 gentoo-2-2aca9262ec92db17a0ba817b337be0f288904efe.zip |
old
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/mamory/mamory-0.2.23.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/games-emulation/mamory/mamory-0.2.23.ebuild b/games-emulation/mamory/mamory-0.2.23.ebuild deleted file mode 100644 index de8018bc2189..000000000000 --- a/games-emulation/mamory/mamory-0.2.23.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# 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.2 2007/07/02 21:25:34 nyhm Exp $ - -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="dev-libs/expat" - -src_unpack() { - unpack ${A} - cd "${S}" - # Make sure the system expat is used - sed -i \ - -e 's/#ifdef.*SYSEXPAT/#if 1/' \ - mamory/amlxml.c mamory/amlxml.h \ - || die "sed amlxml failed" - - # Remove hardcoded CFLAGS options - sed -i \ - -e '/AC_ARG_ENABLE(debug,/ {N;N;N;d}' \ - configure.ac \ - || die "sed configure.ac failed" - - # Make it possible for eautoreconf to fix fPIC etc. - sed -i \ - -e '/libcommon_la_LDFLAGS= -static/d' \ - common/Makefile.am \ - || die "sed Makefile.am 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 -} |