Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/mamory/
Date: Sun, 29 Apr 2018 11:27:03
Message-Id: 1525001181.6162afe1a9fda05e4d447ec48cbcf09fe70b429e.pacho@gentoo
1 commit: 6162afe1a9fda05e4d447ec48cbcf09fe70b429e
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 29 11:07:48 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 29 11:26:21 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6162afe1
7
8 games-emulation/mamory: Drop old
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 games-emulation/mamory/mamory-0.2.25.ebuild | 48 -----------------------------
13 1 file changed, 48 deletions(-)
14
15 diff --git a/games-emulation/mamory/mamory-0.2.25.ebuild b/games-emulation/mamory/mamory-0.2.25.ebuild
16 deleted file mode 100644
17 index fbf75c2d3d0..00000000000
18 --- a/games-emulation/mamory/mamory-0.2.25.ebuild
19 +++ /dev/null
20 @@ -1,48 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -inherit autotools flag-o-matic games
26 -
27 -DESCRIPTION="ROM management tools and library"
28 -HOMEPAGE="http://mamory.sourceforge.net/"
29 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
30 -
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -KEYWORDS="~amd64 ~x86"
34 -IUSE=""
35 -
36 -DEPEND="dev-libs/expat"
37 -RDEPEND=${DEPEND}
38 -
39 -src_prepare() {
40 - # Make sure the system expat is used
41 - sed -i \
42 - -e 's/#ifdef.*SYSEXPAT/#if 1/' \
43 - mamory/amlxml.c mamory/amlxml.h || die
44 -
45 - # Remove hardcoded CFLAGS options
46 - sed -i \
47 - -e '/AC_ARG_ENABLE(debug,/ {N;N;N;d}' \
48 - configure.ac || die
49 -
50 - # Make it possible for eautoreconf to fix fPIC etc.
51 - sed -i \
52 - -e '/libcommon_la_LDFLAGS= -static/d' \
53 - common/Makefile.am || die
54 -
55 - AT_M4DIR="config" eautoreconf
56 - append-cflags -std=gnu89 # build with gcc5 (bug #570500)
57 -}
58 -
59 -src_configure() {
60 - egamesconf \
61 - --includedir=/usr/include
62 -}
63 -
64 -src_install() {
65 - default
66 - dohtml DOCS/mamory.html
67 - prepgamesdirs
68 -}