blob: 4b563da7bcbf9ceab3816ee7d0d218845916f426 (
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
|
# Copyright 1999-2004 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.4 2004/06/24 22:00:43 agriffis Exp $
inherit games
DESCRIPTION="Bomberman clone w/multiplayer support"
SRC_URI="http://www.xdr.com/dash/${P}.tgz"
HOMEPAGE="http://www.xdr.com/dash/bomber.html"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
IUSE=""
DEPEND="virtual/x11
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
sed -i "s:X386:X11R6:" Makefile
sed -i "s:data/%s:${GAMES_DATADIR}/${PN}/%s:" bomber.c
sed -i "s:=\"data\":=\"${GAMES_DATADIR}/${PN}\":" sound.c
}
src_compile() {
emake CFLAGS="${CFLAGS}" || die
}
src_install() {
dogamesbin matcher bomber
dodir ${GAMES_DATADIR}/${PN}
cp -r data/* ${D}/${GAMES_DATADIR}/${PN}/
dodoc README Changelog
prepgamesdirs
}
|