blob: df9c5541a85a6727674e96f2e2ea4e6b8abc5b7f (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/0verkill/0verkill-0.16-r3.ebuild,v 1.9 2010/11/08 18:34:45 mr_bones_ Exp $
EAPI=2
inherit autotools eutils games
DESCRIPTION="a bloody 2D action deathmatch-like game in ASCII-ART"
HOMEPAGE="http://artax.karlin.mff.cuni.cz/~brain/0verkill/"
SRC_URI="http://artax.karlin.mff.cuni.cz/~brain/0verkill/release/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ia64 ppc sparc x86"
IUSE="X"
DEPEND="X? ( x11-libs/libXpm )"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-docs.patch \
"${FILESDIR}"/${P}-home-overflow.patch \
"${FILESDIR}"/${P}-segv.patch \
"${FILESDIR}"/${P}-gentoo-paths.patch \
"${FILESDIR}"/${P}-ovflfix.patch \
"${FILESDIR}"/${P}-CC.patch \
"${FILESDIR}"/${P}-underflow-check.patch #136222 \
sed -i \
-e "s:data/:${GAMES_DATADIR}/${PN}/data/:" cfg.h \
|| die "sed failed"
sed -i \
-e "s:@CFLAGS@ -O3 :@CFLAGS@ :" Makefile.in \
|| die "sed failed"
sed -i \
-e "/gettimeofday/s/getopt/getopt calloc/" configure.in \
|| die "sed failed"
eautoreconf
}
src_configure() {
egamesconf $(use_with X x)
}
src_install() {
local x
dogamesbin 0verkill || die
for x in avi bot editor server test_server ; do
newgamesbin ${x} 0verkill-${x} || die ${x}
done
if use X ; then
dogamesbin x0verkill || die
for x in avi editor ; do
newgamesbin ${x} 0verkill-${x} || die ${x}
done
fi
insinto "${GAMES_DATADIR}/${PN}"
doins -r data grx || die
dohtml doc/*.html
rm doc/*.html doc/README.OS2 doc/Readme\ Win32.txt doc/COPYING
dodoc doc/*
prepgamesdirs
}
|