blob: a71486eca436c740b1441d9a47a5fed6bbed454a (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/towbowl-tactics/towbowl-tactics-0.5.ebuild,v 1.8 2006/12/05 18:15:51 wolf31o2 Exp $
inherit eutils games
DESCRIPTION="Tow Bowl Tactics is a game based on Games Workshop's Blood Bowl"
HOMEPAGE="http://www.towbowltactics.com/index_en.html"
SRC_URI="http://www.towbowltactics.com/download/tbt.${PV}.src.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="virtual/libc
>=dev-libs/libxml2-2.6.6
>=media-libs/smpeg-0.4.4
>=media-libs/sdl-net-1.2.5
>=media-libs/sdl-image-1.2.3
>=media-libs/sdl-mixer-1.2.5"
DEPEND="${RDEPEND}
app-arch/unzip"
S="${WORKDIR}/tbt/src"
src_unpack() {
local f
unpack ${A}
cd ${S}
sed -i \
-e "s/<language>0/<language>1/g" ../config.xml \
|| die "sed config.xml failed"
sed -i \
-e "/^CFLAGS/ s:-O2 -g -fno-strength-reduce -Wall -W:${CFLAGS}:" \
-e "/^TBTHOME/ s:/.*:${GAMES_DATADIR}/tbt:" Makefile \
|| die "sed Makefile failed"
sed -i \
-e "/tbt.ico/ s:\"\./:TBTHOME \"/:" Main.cpp \
|| die "sed Main.cpp failed"
sed -i \
-e "s:TBTHOME \"/config.xml:\"${GAMES_SYSCONFDIR}/tbt/config.xml:g" \
global.h || die "sed global,h failed"
for f in $(find ${S} -type f)
do
edos2unix ${f}
done
}
src_install() {
dogamesbin tbt || die "dogamesbin failed"
dodir "${GAMES_DATADIR}/tbt"
cp -r ../data ../tbt.ico "${D}${GAMES_DATADIR}/tbt" || die "cp failed"
insinto "${GAMES_SYSCONFDIR}/tbt"
doins ../config.xml || die "doins failed"
prepgamesdirs
}
|