blob: 9cdb70ec89d3ad33b19ddcd0272a832ff13802f4 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/xbomber/xbomber-101.ebuild,v 1.11 2006/04/02 08:51:54 genstef Exp $
inherit eutils games
DESCRIPTION="Bomberman clone w/multiplayer support"
HOMEPAGE="http://www.xdr.com/dash/bomber.html"
SRC_URI="http://www.xdr.com/dash/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
DEPEND="|| ( x11-libs/libX11 virtual/x11 )"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "s:X386:X11R6:" Makefile \
|| die "sed failed"
sed -i \
-e "s:data/%s:${GAMES_DATADIR}/${PN}/%s:" bomber.c \
|| die "sed failed"
sed -i \
-e "s:=\"data\":=\"${GAMES_DATADIR}/${PN}\":" sound.c \
|| die "sed failed"
epatch "${FILESDIR}"/${P}-va_list.patch
epatch "${FILESDIR}"/${P}-gcc4.patch
}
src_compile() {
emake CFLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
dogamesbin matcher bomber || die "dogamesbin failed"
insinto "${GAMES_DATADIR}"/${PN}
doins -r data/* || die "doins failed"
dodoc README Changelog
prepgamesdirs
}
|