forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mamory-0.2.25.ebuild
49 lines (39 loc) · 1008 Bytes
/
mamory-0.2.25.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
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 ppc 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
}