diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-04-29 13:07:48 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-04-29 13:26:21 +0200 |
commit | 6162afe1a9fda05e4d447ec48cbcf09fe70b429e (patch) | |
tree | 4e9c80bfbf6f0472faa450fde47b068eb86c9908 /games-emulation/mamory | |
parent | games-emulation/mamory: Make repoman happy (diff) | |
download | gentoo-6162afe1a9fda05e4d447ec48cbcf09fe70b429e.tar.gz gentoo-6162afe1a9fda05e4d447ec48cbcf09fe70b429e.tar.bz2 gentoo-6162afe1a9fda05e4d447ec48cbcf09fe70b429e.zip |
games-emulation/mamory: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-emulation/mamory')
-rw-r--r-- | games-emulation/mamory/mamory-0.2.25.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/games-emulation/mamory/mamory-0.2.25.ebuild b/games-emulation/mamory/mamory-0.2.25.ebuild deleted file mode 100644 index fbf75c2d3d00..000000000000 --- a/games-emulation/mamory/mamory-0.2.25.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools flag-o-matic 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 ~x86" -IUSE="" - -DEPEND="dev-libs/expat" -RDEPEND=${DEPEND} - -src_prepare() { - # Make sure the system expat is used - sed -i \ - -e 's/#ifdef.*SYSEXPAT/#if 1/' \ - mamory/amlxml.c mamory/amlxml.h || die - - # Remove hardcoded CFLAGS options - sed -i \ - -e '/AC_ARG_ENABLE(debug,/ {N;N;N;d}' \ - configure.ac || die - - # Make it possible for eautoreconf to fix fPIC etc. - sed -i \ - -e '/libcommon_la_LDFLAGS= -static/d' \ - common/Makefile.am || die - - AT_M4DIR="config" eautoreconf - append-cflags -std=gnu89 # build with gcc5 (bug #570500) -} - -src_configure() { - egamesconf \ - --includedir=/usr/include -} - -src_install() { - default - dohtml DOCS/mamory.html - prepgamesdirs -} |