Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 99983 | Differences between
and this patch

Collapse All | Expand All

(-)gnuboy/gnuboy-1.0.3.ebuild (-4 / +21 lines)
Lines 2-7 Link Here
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/games-emulation/gnuboy/gnuboy-1.0.3.ebuild,v 1.7 2004/06/24 22:28:21 agriffis Exp $
3
# $Header: /var/cvsroot/gentoo-x86/games-emulation/gnuboy/gnuboy-1.0.3.ebuild,v 1.7 2004/06/24 22:28:21 agriffis Exp $
4
4
5
inherit games
6
5
DESCRIPTION="Gameboy emulator with multiple renderers"
7
DESCRIPTION="Gameboy emulator with multiple renderers"
6
HOMEPAGE="http://gnuboy.unix-fu.org/"
8
HOMEPAGE="http://gnuboy.unix-fu.org/"
7
SRC_URI="http://gnuboy.unix-fu.org/src/${P}.tar.gz"
9
SRC_URI="http://gnuboy.unix-fu.org/src/${P}.tar.gz"
Lines 9-19 Link Here
9
LICENSE="GPL-2"
11
LICENSE="GPL-2"
10
SLOT="0"
12
SLOT="0"
11
KEYWORDS="x86 ppc amd64"
13
KEYWORDS="x86 ppc amd64"
12
IUSE=""
14
IUSE="X fbcon sdl svga x86"
15
16
RDEPEND="X? ( virtual/x11 )
17
	sdl? ( media-libs/libsdl )
18
	svga? ( media-libs/svgalib )"
13
19
14
RDEPEND="media-libs/libsdl"
20
src_compile() {
21
	egamesconf \
22
		$(use_with X x) \
23
		$(use_with fbcon fb) \
24
		$(use_with sdl) \
25
		$(use_with svga svgalib) \
26
		$(use_enable x86 asm) \
27
 		--disable-arch \
28
		--disable-optimize
29
	emake || die "emake failed"
30
}
15
31
16
src_install() {
32
src_install() {
17
	dodoc README docs/CHANGES docs/CONFIG docs/CREDITS docs/FAQ docs/HACKING docs/WHATSNEW
33
	egamesinstall
18
	dobin fbgnuboy sdlgnuboy sgnuboy xgnuboy || die
34
	dodoc README docs/CHANGES docs/CONFIG docs/CREDITS docs/FAQ \
35
		docs/HACKING docs/WHATSNEW
19
}
36
}

Return to bug 99983