blob: 64609b9bdc930c6c11f95c34499fdb8bee649275 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/enemy-territory/enemy-territory-2.56-r2.ebuild,v 1.13 2004/12/15 13:25:58 wolf31o2 Exp $
inherit games
DESCRIPTION="Return to Castle Wolfenstein: Enemy Territory - standalone multi-player game based on Return to Castle Wolfenstein"
HOMEPAGE="http://www.idsoftware.com/"
SRC_URI="mirror://3dgamers/pub/3dgamers4/games/wolfensteinet/et-linux-${PV}-2.x86.run
mirror://3dgamers/pub/3dgamers/games/wolfensteinet/et-linux-${PV}-2.x86.run"
LICENSE="RTCW-ETEULA"
SLOT="0"
# This game is actively maintained by a developer with both x86 and amd64 kit.
# DO NOT TOUCH THIS EBUILD WITHOUT THE PERMISSION OF wolf31o2!!!
KEYWORDS="x86 amd64"
IUSE="dedicated opengl"
RESTRICT="nomirror nostrip"
DEPEND="virtual/libc"
RDEPEND="dedicated? ( app-misc/screen )
!dedicated? ( virtual/opengl )
opengl? ( virtual/opengl )
amd64? ( >=app-emulation/emul-linux-x86-xlibs-1.0-r1 )"
S="${WORKDIR}"
dir="${GAMES_PREFIX_OPT}/${PN}"
Ddir="${D}/${dir}"
pkg_setup() {
check_license || die "License check failed"
games_pkg_setup
}
src_unpack() {
unpack_makeself
}
src_install() {
exeinto "${dir}"
doexe bin/Linux/x86/* openurl.sh || die "doexe failed"
insinto "${dir}"
doins CHANGES v1.02_Readme.htm || die "doins failed"
insinto /usr/share/pixmaps
doins ET.xpm
cp -r Docs pb etmain "${Ddir}" || die "cp failed"
dogamesbin "${FILESDIR}/et" || die "dogamesbin failed"
dosed "s:GENTOO_DIR:${dir}:" ${GAMES_BINDIR}/et
if use dedicated ; then
dogamesbin "${FILESDIR}/et-ded" || die "dogamesbin failed"
dosed "s:GENTOO_DIR:${dir}:" "${GAMES_BINDIR}/et-ded"
exeinto /etc/init.d
newexe "${FILESDIR}/et-ded.rc" et-ded || die "newexe failed"
dosed "s:GAMES_USER_DED:${GAMES_USER_DED}:" /etc/init.d/et-ded
dosed "s:GENTOO_DIR:${GAMES_BINDIR}:" /etc/init.d/et-ded
insinto /etc/conf.d
newins "${FILESDIR}/et-ded.conf.d" et-ded || die "newins failed"
fi
# TODO: move this to /var/ perhaps ?
dodir "${dir}/etwolf-homedir"
dosym "${dir}/etwolf-homedir" "${GAMES_PREFIX}/.etwolf"
prepgamesdirs
make_desktop_entry et "Enemy Territory" ET.xpm
chmod g+rw "${Ddir}" "${Ddir}/etwolf-homedir" "${Ddir}/etmain"
}
pkg_postinst() {
games_pkg_postinst
echo
einfo "To play the game run:"
einfo " et"
if use dedicated; then
echo
einfo "To start a dedicated server run:"
einfo " /etc/init.d/et-ded start"
echo
einfo "To run the dedicated server at boot, type:"
einfo " rc-update add et-ded default"
echo
einfo "The dedicated server is started under the ${GAMES_USER_DED} user account"
fi
if use amd64; then
echo
einfo "If you are running an amd64 system and using ALSA, you must have"
einfo "ALSA 32-bit emulation enabled in your kernel for this to function properly."
fi
}
|