forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bomns-0.99.2.ebuild
48 lines (41 loc) · 1.02 KB
/
bomns-0.99.2.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
46
47
48
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools flag-o-matic games
DESCRIPTION="A fast-paced multiplayer deathmatch arcade game"
HOMEPAGE="http://greenridge.sourceforge.net"
SRC_URI="mirror://sourceforge/greenridge/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
IUSE="gtk editor"
DEPEND="media-libs/libsdl[video]
media-libs/sdl-mixer
gtk? ( x11-libs/gtk+:2 )"
RDEPEND=${DEPEND}
src_prepare() {
sed -i \
-e "/appicondir/s:\$(prefix):/usr:" \
-e "/desktopdir/s:\$(prefix):/usr:" \
$(find icons -name Makefile.am) \
Makefile.am || die
sed -i \
-e "s:\$*[({]prefix[})]/share:${GAMES_DATADIR}:" \
configure.in \
graphics/Makefile.am \
levels/Makefile.am \
sounds/Makefile.am || die
epatch "${FILESDIR}"/${P}-fpe.patch
eautoreconf
}
src_configure() {
filter-flags -fforce-addr
egamesconf \
--disable-launcher1 \
$(use_enable gtk launcher2) \
$(use_enable editor)
}
src_install() {
default
prepgamesdirs
}