From 2f8db31405fac68eea6f7257d58529243815033b Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 30 Apr 2018 21:33:31 +0100 Subject: gentoo resync : 30.04.2018 --- games-emulation/mamory/Manifest | 2 +- games-emulation/mamory/mamory-0.2.25-r1.ebuild | 50 ++++++++++++++++++++++++++ games-emulation/mamory/mamory-0.2.25.ebuild | 48 ------------------------- 3 files changed, 51 insertions(+), 49 deletions(-) create mode 100644 games-emulation/mamory/mamory-0.2.25-r1.ebuild delete mode 100644 games-emulation/mamory/mamory-0.2.25.ebuild (limited to 'games-emulation/mamory') diff --git a/games-emulation/mamory/Manifest b/games-emulation/mamory/Manifest index 95dda740e6c6..58b2d16d4e56 100644 --- a/games-emulation/mamory/Manifest +++ b/games-emulation/mamory/Manifest @@ -1,3 +1,3 @@ DIST mamory-0.2.25.tar.gz 437223 BLAKE2B 2893595245ac3fde7c049448f7dc1cbe0ac24767a7efdcf22b5000154026961ef9b700844cc53d4808e7f90b5042f192d0d2a9338cb47e42d6f9d534f5946044 SHA512 d59539646fa61a3964e46123e0c8d09170f5561355e57b8c93dc89c11d99af1a2edeb60389e7f42b14f431c9c495c6ce20c70517ac4977ccaef62f0ed47f0d76 -EBUILD mamory-0.2.25.ebuild 999 BLAKE2B 6c25f19cb85a043961f22eb5bf89eda79f4f34417e2b7461e6066aa39917c776840962d4d5cb7d294ee296f41f965ee04b1758ecab30789e96313711c13a26c5 SHA512 61d71179b875203157bed19d145f458bd44e7bd378bc1769abd8b2247de3469d89c7111a0518a82204514737e30ac387d605bf69c7531ac31db7f1c99edae19c +EBUILD mamory-0.2.25-r1.ebuild 1051 BLAKE2B ddb02d41af08032313a818b8f066645f28775331a5e08f846f3b8e8c9ac797fe2959bdd528711609e30701428d42987142cb6888cc5d7fb1aca1707951ad9ad5 SHA512 b917e62eb8f075291e5e9dec9c481a60a99eb333bfc8d02e66efee9da457068e92531bd4c743df35ce0fb5133e3f8dd00e47e70e3bbc52f10657bcd65df8278f MISC metadata.xml 329 BLAKE2B b6c6f06e91bfcd0d053f2f057b1651981d60204b07faad12072375b97d84808fa77d6c2549ca3dde5a92881840c4f475fe8af578e1c4c0e1320936ebb0fa9e18 SHA512 58aa61207f4409bc50a405342e2f68cf5d576e7819def22d5bd2788869225fc7d4d8769f1efebd78b40195a30e8a104e2d4107dca6bb1d11a66291353088a75c diff --git a/games-emulation/mamory/mamory-0.2.25-r1.ebuild b/games-emulation/mamory/mamory-0.2.25-r1.ebuild new file mode 100644 index 000000000000..cccd915c6f27 --- /dev/null +++ b/games-emulation/mamory/mamory-0.2.25-r1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools flag-o-matic + +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() { + default + + # 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() { + econf \ + --includedir=/usr/include \ + --disable-static +} + +src_install() { + HTML_DOCS="DOCS/mamory.html" default + find "${D}" -name '*.la' -delete || die +} 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 -} -- cgit v1.2.3