blob: 47393f62edf7ef58f65f92b07205eb48b51e4080 (
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 Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/xbattle/xbattle-5.4.1.ebuild,v 1.4 2004/12/30 05:10:23 mr_bones_ Exp $
inherit games
DESCRIPTION="A multi-player game of strategy and coordination"
HOMEPAGE="http://www.cgl.uwaterloo.ca/~jdsteele/xbattle.html"
SRC_URI="ftp://cns-ftp.bu.edu/pub/xbattle/${P}.tar.gz"
LICENSE="xbattle"
SLOT="0"
KEYWORDS="x86 ppc sparc mips alpha hppa amd64 ia64"
IUSE=""
DEPEND="virtual/x11"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "s:/export/home/lesher/:${GAMES_DATADIR}/${PN}/:" Imakefile \
|| die "sed Imakefile failed"
}
src_compile() {
xmkmf || die "xmkmf failed"
emake CDEBUGFLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
dogamesbin xbattle || die "dogamesbin failed"
newgamesbin tutorial1 xbattle-tutorial1 || die "newgamesbin failed"
newgamesbin tutorial2 xbattle-tutorial2 || die "newgamesbin failed"
dodir "${GAMES_DATADIR}/${PN}"
cp -r xbas/ xbos/ xbts/ "${D}${GAMES_DATADIR}/${PN}/" || die "cp failed"
newman xbattle.man xbattle.6
dodoc README xbattle.dot
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
einfo 'You may be interested by these tutorials:'
einfo ' xbattle-tutorial1'
einfo ' xbattle-tutorial2'
}
|