blob: 725f80ba68d72c19edbc2596ec30da762c47185d (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/gens/gens-2.12a.ebuild,v 1.2 2003/09/29 06:09:22 mr_bones_ Exp $
inherit games
DESCRIPTION="A Sega Genesis/CD/32X emulator"
HOMEPAGE="http://gens.consolemul.com/"
SRC_URI="mirror://sourceforge/gens/gens-rc2.tar.gz"
#Gens212a1SrcL.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND=">=media-libs/libsdl-1.2
app-arch/unzip
>=dev-lang/nasm-0.98
>=sys-apps/sed-4
>=x11-libs/gtk+-2.0*"
S=${WORKDIR}/gens-linux-${PV}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS BUGS README
prepgamesdirs
}
|