blob: 431c77be1449535b79c9ad1f955a67caf108e4b2 (
plain)
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
50
51
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/mamory/mamory-0.2.22.ebuild,v 1.1 2006/12/28 21:59:20 mr_bones_ Exp $
inherit autotools games
DESCRIPTION="rom management tools and library"
HOMEPAGE="http://mamory.sourceforge.net/"
SRC_URI="mirror://sourceforge/mamory/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE=""
DEPEND=""
RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
# Remove hardcoded CFLAGS options
sed -i \
-e '/AC_ARG_ENABLE(debug,/ {N;N;N;d}' \
configure.in \
|| die "sed failed"
# Make it possible for eautoreconf to fix fPIC etc.
sed -i \
-e '/libcommon_la_LDFLAGS= -static/d' \
common/Makefile.am \
|| die "sed 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
}
|