blob: 4495d58a6ac7df4cc34ad8fdba391c40e8ae9842 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/bomns/bomns-0.99.1.ebuild,v 1.4 2007/04/09 21:49:41 welp Exp $
inherit 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 ~ppc ~x86 ~x86-fbsd"
IUSE="gtk editor"
DEPEND="media-libs/libsdl
media-libs/sdl-mixer
gtk? ( =x11-libs/gtk+-2* )"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "s:\$*[({]prefix[})]/share:${GAMES_DATADIR}:" \
configure \
graphics/Makefile.in \
levels/Makefile.in \
sounds/Makefile.in \
|| die "sed failed"
}
src_compile() {
filter-flags -fforce-addr
egamesconf \
--disable-launcher1 \
$(use_enable gtk launcher2) \
$(use_enable editor) \
|| die "econf failed."
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed."
dodoc AUTHORS ChangeLog NEWS README TODO
prepgamesdirs
}
|