blob: 27553bfb0073b0694afbfe118487c7a3891be491 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# 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.1 2003/10/28 09:12:47 mr_bones_ 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/"
KEYWORDS="x86"
LICENSE="GPL-2"
SLOT="0"
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
}
|