blob: 3b4253656cea2a45158744250c4fc16ff86417f4 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/savage-bin/savage-bin-2.00c.ebuild,v 1.2 2006/10/13 11:19:07 nyhm Exp $
inherit eutils games
SEP_URI="http://www.notforidiots.com/autoupdater/"
BASE_URI="http://downloads.s2games.com/online_orders/"
DESCRIPTION="Unique mix of strategy and FPS"
HOMEPAGE="http://www.s2games.com/savage/"
SRC_URI="${BASE_URI}/savage_linux.sh.gz
mirror://liflg/savage_${PV}-english.update.run
${SEP_URI}/SEP-3T.tar.gz
${SEP_URI}/SEP-3T_3T+-r2.tar.gz
x86? ( !sse? ( ${SEP_URI}/SEP-2C-noSSE.tar.gz ) )"
# doc? (${MANUAL_URI})"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86"
IUSE="sse doc"
RESTRICT="mirror strip"
DEPEND="games-util/loki_patch"
RDEPEND=""
S=${WORKDIR}
dir=${GAMES_PREFIX_OPT}/savage
Ddir=${D}/${dir}
src_unpack() {
einfo "Unpacking base file"
einfo "This will take a while"
unpack savage_linux.sh.gz
unpack_makeself ${S}/savage_linux.sh || die "unpacking base files"
find ./ -type f -name '*.dll' -exec rm '{}' \;
find ./ -type f -name '*.exe' -exec rm '{}' \;
find ./ -type f -name '*.bat' -exec rm '{}' \;
rm Savage/docs/*.url
rm savage_linux.sh
einfo "Unpacking other files"
mkdir patch
cd patch
unpack_makeself savage_${PV}-english.update.run
cd ..
mkdir sep
cd sep
unpack SEP-3T.tar.gz
unpack SEP-3T_3T+-r2.tar.gz
if ! use sse && use x86 ; then
unpack SEP-2C-noSSE.tar.gz
fi
# cd ..
# if use doc;then
# unpack ${MANUAL_URI}
# fi
}
src_install() {
dodir ${dir}
insinto ${dir}
doins -r Savage/*
doins -r linux/*
doins bin/x86/*
cd patch
loki_patch patch.dat ${Ddir} || die "patching failed"
cd ..
doins -r sep/*
# if use doc; then
# insinto ${dir}/docs
# doins *.pdf
# fi
touch ${Ddir}/scripts.log
prepgamesdirs
fperms ug+x ${dir}/silverback.bin
fperms ug+w ${dir}/scripts.log
rm -rf ${Ddir}/savage* ${Ddir}/update ${Ddir}/updater \
${Ddir}/editor.* ${Ddir}/dedicated* ${Ddir}/*.sh
newicon linux/icon.xpm savage.xpm
games_make_wrapper savage "./silverback.bin set mod game" ${dir} ${dir}/libs
make_desktop_entry savage "Savage: Battle For Newerth" savage.xpm
games_make_wrapper savage-editor "./silverback.bin set mod editor" ${dir} ${dir}/libs
make_desktop_entry savage-editor "Savage - Editor" savage.xpm
games_make_wrapper savage-graveyard "./silverback.bin set mod graveyard" ${dir} ${dir}/libs
make_desktop_entry savage-graveyard "Savage - Graveyard" savage.xpm
}
pkg_postinst() {
games_pkg_postinst
einfo " USE CDKEY:00000000000000000000 to activate game"
}
|