blob: bdb454536e9bb2d2e10e7a7850bc203e95bb0b7e (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/xevil/xevil-2.02_p2.ebuild,v 1.6 2004/06/24 22:14:07 agriffis Exp $
inherit games eutils
DEB_PATCH=2
MY_PV=${PV/_p/r}
DESCRIPTION="3rd person, side-view, fast-action, kill-them-before-they-kill-you game"
HOMEPAGE="http://www.xevil.com/"
SRC_URI="http://www.xevil.com/download/stable/xevilsrc${MY_PV}.zip
mirror://debian/pool/main/x/xevil/xevil_${MY_PV}-${DEB_PATCH}.diff.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/x11"
S=${WORKDIR}
src_unpack() {
unpack ${A}
edos2unix readme.txt x11/*.{cpp,h} cmn/*.{cpp,h} makefile config.mk
epatch ${WORKDIR}/xevil_${MY_PV}-${DEB_PATCH}.diff
sed -i \
-e 's:-static::' \
-e "s:CFLAGS=\":CFLAGS=\"${CFLAGS} :g" \
-e 's:-lXpm:-lXpm -lpthread:g' \
config.mk
}
src_compile() {
emake || die #emake dies horribly
}
src_install() {
dogamesbin x11/REDHAT_LINUX/xevil
newgamesbin x11/REDHAT_LINUX/serverping xevil-serverping
dodoc readme.txt
prepgamesdirs
}
|