blob: 40ee74972a8213ab3ba59863b3d9ce2e8ee3d57e (
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
46
47
48
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/jumpnbump/jumpnbump-1.41-r1.ebuild,v 1.2 2004/02/20 06:20:00 mr_bones_ Exp $
inherit games
DESCRIPTION="a funny multiplayer game about cute little fluffy bunnies"
HOMEPAGE="http://www.jumpbump.mine.nu/"
SRC_URI="http://www.jumpbump.mine.nu/port/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
DEPEND="virtual/glibc
virtual/x11
>=sys-apps/sed-4
>=media-libs/sdl-mixer-1.2
>=media-libs/libsdl-1.2
>=media-libs/sdl-net-1.2"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e 's:/share/jumpnbump/:/share/games/jumpnbump/:' \
-e 's:\$(PREFIX)/games/$:$(PREFIX)/games/bin/:g' Makefile || \
die 'sed Makefile failed'
sed -i \
-e 's:/share/jumpnbump/:/share/games/jumpnbump/:' globals.pre || \
die 'sed globals.pre failed'
sed -i \
-e 's:%%PREFIX%%/games/:%%PREFIX%%/share/games/:' \
-e 's:/share/jumpnbump/:/share/games/jumpnbump/:' jnbmenu.pre || \
die 'sed jnbmenu.pre failed'
}
src_compile() {
emake PREFIX=/usr || die "emake failed"
}
src_install() {
make PREFIX=${D}/usr install || die "make install failed"
prepgamesdirs
}
|