blob: cd5b0314d1ec5d374106ea8dd692d37199f74464 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngb/gngb-20030809.ebuild,v 1.1 2003/09/09 16:26:50 vapier Exp $
DESCRIPTION="gngb - Gameboy / Gameboy Color emulator"
HOMEPAGE="http://m.peponas.free.fr/gngb/"
SRC_URI="http://m.peponas.free.fr/gngb/download/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86 -ppc"
SLOT="0"
IUSE="opengl"
RDEPEND="media-libs/libsdl
opengl? ( virtual/opengl )"
src_compile() {
use opengl || myconf=" --with-gl "
econf ${myconf}
emake || die
}
src_install() {
dodoc NEWS README TODO INSTALL AUTHORS
make DESTDIR=${D} install || die
}
|