forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gens-2.15.5.ebuild
45 lines (38 loc) · 999 Bytes
/
gens-2.15.5.ebuild
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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils flag-o-matic games
DESCRIPTION="A Sega Genesis/CD/32X emulator"
HOMEPAGE="https://sourceforge.net/projects/gens/"
SRC_URI="mirror://sourceforge/gens/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="virtual/opengl
>=media-libs/libsdl-1.2[joystick,video]
x11-libs/gtk+:2"
DEPEND="${RDEPEND}
>=dev-lang/nasm-0.98"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-romsdir.patch \
"${FILESDIR}"/${P}-as-needed.patch \
"${FILESDIR}"/${P}-ovflfix.patch \
"${FILESDIR}"/${P}-gcc34.patch
sed -i -e '1i#define OF(x) x' src/gens/util/file/unzip.h || die
append-ldflags -Wl,-z,noexecstack
}
src_configure() {
egamesconf \
--disable-gtktest \
--disable-sdltest
}
src_install() {
DOCS="AUTHORS BUGS README gens.txt history.txt" \
default
newicon pixmaps/gens_small.png ${PN}.png
make_desktop_entry "${PN}" "Gens"
prepgamesdirs
}