blob: eddcb0178cb969cf06c72364023f255dbbf25751 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/cervi/cervi-0.0.3.ebuild,v 1.6 2005/05/01 17:14:03 hansmi Exp $
inherit games
S="${WORKDIR}/${PN}"
DESCRIPTION="A multiplayer game where players drive a worm and try not to collide with anything"
SRC_URI="http://tomi.nomi.cz/download/${P}.tar.bz2"
HOMEPAGE="http://tomi.nomi.cz/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE=""
RDEPEND="x11-libs/gtk+
media-sound/esound
media-sound/timidity++"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
sed -i \
-e "/^CFLAGS/ s:-Wall:${CFLAGS}:" \
-e "/^CXXFLAGS/ s:-Wall:${CXXFLAGS}:" ${S}/Makefile || \
die "sed Makefile failed"
}
src_compile() {
emake \
prefix="/usr" \
bindir="${GAMES_BINDIR}" \
datadir="${GAMES_DATADIR}/${PN}" || \
die "emake failed"
}
src_install() {
dodir ${GAMES_BINDIR} || die "dodir failed"
make \
prefix=${D}/usr \
bindir="${D}${GAMES_BINDIR}" \
datadir="${D}${GAMES_DATADIR}/${PN}" install || \
die "make install failed"
dodoc AUTHORS COPYRIGHT README changelog || die "dodoc failed"
prepgamesdirs
}
|