blob: 2ad022c10d1f82dc9417e8262ff7fb1bd056b0bc (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/glest/glest-2.0.0-r1.ebuild,v 1.5 2006/11/17 08:51:08 nyhm Exp $
WANT_AUTOCONF=latest
WANT_AUTOMAKE=latest
inherit autotools eutils games
L_URI="http://www.glest.org/files/contrib/translations"
DESCRIPTION="Cross-platform 3D realtime strategy game"
HOMEPAGE="http://www.glest.org/"
SRC_URI="mirror://sourceforge/${PN}/${PN}_source_${PV}.zip
mirror://sourceforge/${PN}/${PN}_data_${PV}.zip
linguas_de? ( ${L_URI}/deutsch_${PV}.zip )
linguas_fr? ( ${L_URI}/francais_${PV}.zip )
linguas_it? ( ${L_URI}/italiano_${PV}.zip )
linguas_pt_BR? ( ${L_URI}/portugues_${PV}.zip )
linguas_sk? ( ${L_URI}/slovak_${PV}.zip )"
LICENSE="GPL-2 glest-data"
SLOT="0"
KEYWORDS="~amd64 -ppc ~x86" # ppc: bug #145478
IUSE="linguas_de linguas_fr linguas_it linguas_pt_BR linguas_sk"
RDEPEND=">=media-libs/libsdl-1.2.5
media-libs/libogg
media-libs/libvorbis
media-libs/openal
dev-libs/xerces-c
virtual/opengl
virtual/glu
x11-libs/libX11
x11-libs/libXt
media-fonts/font-adobe-utopia-75dpi"
DEPEND="${RDEPEND}
app-arch/unzip
dev-util/jam"
S=${WORKDIR}/${PN}_source_${PV}/mk/linux
GAMES_USE_SDL="nojoystick"
src_unpack() {
unpack ${A}
cd ${PN}_source_${PV}
local file
for file in $(find . -type f) ; do
edos2unix "${file}"
done
epatch \
"${FILESDIR}"/${P}-gcc41.patch \
"${FILESDIR}"/${P}-home.patch
sed -i \
-e "s:GENTOO_DATADIR:${GAMES_DATADIR}/${PN}:" \
source/glest_game/main/main.cpp \
|| die "sed main.cpp failed"
cd "${S}"
# sometimes they package configure, sometimes they don't
if [[ ! -f configure ]] ; then
chmod a+x autogen.sh
./autogen.sh || die "autogen failed"
fi
sed -i 's:-O3 -g3::' Jamrules || die "sed Jamrules failed"
}
src_compile() {
# Fails with wx enabled, bug #130011
egamesconf \
--with-vorbis=/usr \
--with-ogg=/usr \
--with-wx-config=disabled_wx \
|| die
jam -q || die "jam failed"
}
src_install() {
dogamesbin glest || die "dogamesbin failed"
insinto "${GAMES_DATADIR}"/${PN}
doins glest.ini || die "doins glest.ini failed"
dodoc ../../docs/README.linux
cd "${WORKDIR}"/glest_game
doins -r data maps techs tilesets || die "doins data failed"
dodoc docs/readme.txt
make_desktop_entry glest Glest /usr/share/pixmaps/${PN}.bmp
newicon techs/magitech/factions/magic/units/archmage/images/archmage.bmp \
${PN}.bmp
insinto "${GAMES_DATADIR}"/${PN}/data/lang
local lang
for lang in ${LINGUAS} ; do
case ${lang} in
de) lang=deutsch_2.0.0.lng ;;
fr) lang=francais.lng ;;
it) lang=italiano2_0_0.lng ;;
pt_BR) lang=tradu_pt-br.lng ;;
sk) lang=slovak.lng ;;
*) continue ;;
esac
doins "${WORKDIR}"/${lang} || die "doins ${lang} failed"
done
prepgamesdirs
}
|