blob: e04e30c42370705ab47d18fb27a2335f230bd3ea (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/tuxnes/tuxnes-0.75.ebuild,v 1.6 2005/06/15 18:36:00 wolf31o2 Exp $
inherit flag-o-matic eutils
DESCRIPTION="emulator for the 8-bit Nintendo Entertainment System"
HOMEPAGE="http://tuxnes.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="X ggi"
DEPEND=">=media-libs/netpbm-9.12
X? ( virtual/x11 )
ggi? ( >=media-libs/libggi-2.0.1 )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-configure.in.patch
epatch "${FILESDIR}"/${P}-gcc34.patch
export WANT_AUTOCONF=2.5
aclocal && automake && autoconf || die "autoconf failed"
}
src_compile() {
replace-flags "-O?" "-O"
econf \
--without-w \
$(use_with ggi) \
$(use_with X x) \
|| die
emake || die
}
src_install() {
make DESTDIR="${D}" install || die
insinto /usr/share/pixmaps
doins tuxnes.xpm tuxnes2.xpm
dodoc AUTHORS BUGS ChangeLog CHANGES NEWS README THANKS
}
|