blob: 9ed370edb44947b5e28e3566d65a095a348720c9 (
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
66
67
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-simulation/simutrans/simutrans-0.102.2.2.ebuild,v 1.3 2010/05/24 18:57:09 pacho Exp $
EAPI=2
inherit flag-o-matic eutils games
MY_PV=${PV/0./}
MY_PV=${MY_PV//./-}
MY_FOOD_PV=${MY_PV/%-2/-1}
DESCRIPTION="A free Transport Tycoon clone"
HOMEPAGE="http://www.simutrans.com/"
# Note: On the last line the mirror:// syntax doesn't work here.
SRC_URI="https://github.com/aburch/${PN}/zipball/v${PV#0.} -> simutrans-src-${MY_PV}.zip
http://sourceforge.net/projects/${PN}/files/${PN}/${MY_PV}/simulinux-${MY_PV}.zip/download -> simulinux-complete-${MY_PV}.zip
https://sourceforge.net/projects/${PN}/files/pak64/${MY_PV}/simupak64-addon-food-${MY_PV}.zip/download -> simupak64-addon-food-${MY_FOOD_PV}.zip
http://sourceforge.net/projects/${PN}/files/pak128/pak128%20for%20102-2-2/pak128-1.4.6--102.2.zip/download -> simupak128-1.4.6--102.2.zip"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="-* amd64 x86"
IUSE=""
RDEPEND="media-libs/libsdl[audio,video]
sys-libs/zlib
media-libs/libpng
media-libs/sdl-mixer"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}
src_prepare() {
strip-flags # bug #293927
echo "BACKEND=mixer_sdl
COLOUR_DEPTH=16
OSTYPE=linux
FLAGS=-DSTEPS16" > config.default \
|| die "echo failed"
if use amd64; then
echo "FLAGS+=-DUSE_C" >> config.default
fi
# make it look in the install location for the data
sed -i \
-e "s:argv\[0\]:\"${GAMES_DATADIR}/${PN}/\":" \
simmain.cc \
|| die "sed failed"
# Please don't override our CFLAGS, kthx
sed -i \
-e '/-O$/d' \
Makefile \
|| die "sed failed"
rm -f simutrans/simutrans
}
src_install() {
newgamesbin sim ${PN} || die "dogamesbin failed"
insinto "${GAMES_DATADIR}"/${PN}
doins -r simutrans/* || die "doins failed"
dodoc documentation/* todo.txt
doicon simutrans.ico
make_desktop_entry simutrans Simutrans /usr/share/pixmaps/simutrans.ico
prepgamesdirs
}
|