blob: 4894dcb02060f3cbbae46c29d83304286c9f8399 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/legends/legends-0.4.0.ebuild,v 1.3 2004/06/24 22:42:16 agriffis Exp $
inherit games
DESCRIPTION="A fast-paced first-person-perspective online multiplayer game similar to Tribes"
HOMEPAGE="http://hosted.tribalwar.com/legends/"
SRC_URI="http://hosted.tribalwar.com/legends/files/${P}.tar.gz"
RESTRICT="nomirror"
KEYWORDS="-* x86"
LICENSE="as-is"
SLOT="0"
IUSE="dedicated"
DEPEND=""
RDEPEND=">=media-libs/libsdl-1.2
media-libs/openal"
src_unpack() {
unpack ${A}
cd ${S}
# keep libSDL-1.3.so because legends requires it as of 0.4.0, and
# 1.2.6 is highest in portage
# rm libSDL-*.so*
rm runlegends libopenal.so
find . -type f -exec chmod a-x '{}' \;
chmod a+x lindedicated LinLegends
}
src_install() {
local dir="${GAMES_PREFIX_OPT}/${PN}"
local LIBSDL=libSDL-1.3.so.0
dodir "${dir}"
keepdir "${dir}/"{show/ui,show/scripts,legends/scripts,legends/data,common/server,common/edit,common/client}
cp -R * "${D}${dir}/" || die "cp failed"
dogamesbin "${FILESDIR}/legends" || die "dogamesbin failed (1)"
dosed "s:GENTOO_DIR:${dir}:" "${GAMES_BINDIR}/legends"
dosed "s:LIBSDL:${LIBSDL}:" "${GAMES_BINDIR}/legends"
if use dedicated ; then
dogamesbin "${FILESDIR}/legends-ded" || die "dogamesbin failed (2)"
dosed "s:GENTOO_DIR:${dir}:" "${GAMES_BINDIR}/legends-ded"
fi
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
echo
einfo "Version ${PV} of ${PN} may give problems if there are"
einfo "config-files from earlier versions. Removing the ~/.legends dir"
einfo "and restarting will solve this."
echo
}
|