blob: 89c185d35169bf4716ef83c281346e7ec5faaf80 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3/quake3-1.32b.ebuild,v 1.3 2003/10/05 02:23:04 vapier Exp $
inherit games
DESCRIPTION="Quake III Arena - 3rd installment of the classic id 3D first-person shooter"
HOMEPAGE="http://www.idsoftware.com/"
SRC_URI="ftp://ftp.idsoftware.com/idstuff/quake3/linux/linuxq3apoint-${PV}.x86.run"
LICENSE="Q3AEULA"
SLOT="0"
KEYWORDS="-* x86"
IUSE="${IUSE} opengl"
RESTRICT="nostrip"
RDEPEND="virtual/glibc
opengl? ( virtual/opengl )
dedicated? ( app-misc/screen )
!dedicated? ( virtual/opengl )"
S=${WORKDIR}
pkg_setup() {
check_license
}
src_unpack() {
unpack_makeself
}
src_install() {
local dir=${GAMES_PREFIX_OPT}/${PN}
dodir ${dir}
insinto ${dir}/baseq3
doins baseq3/*.pk3
mv Docs ${D}/${dir}/
insinto ${dir}/missionpack
doins missionpack/*.pk3
mv pb ${D}/${dir}/
exeinto ${dir}
insinto ${dir}
doexe bin/x86/{quake3.x86,q3ded} ${FILESDIR}/startq3ded
doins quake3.xpm README* Q3A_EULA.txt
dogamesbin ${FILESDIR}/quake3 ${FILESDIR}/q3ded
exeinto /etc/init.d
newexe ${FILESDIR}/q3ded.rc q3ded
insinto /usr/share/pixmaps
doins quake3.xpm
prepgamesdirs
make_desktop_entry quake3 "Quake III Arena" quake3.xpm
}
pkg_postinst() {
games_pkg_postinst
# Shouldn't this be using the games user?
# enewuser q3 -1 /bin/bash /opt/quake3 ${GAMES_GROUP}
einfo "You need to copy pak0.pk3 from your Quake3 CD into ${dir}/baseq3."
einfo "Or if you have got a Window installation of Q3 make a symlink to save space."
echo
einfo "To start a dedicated server, run"
einfo "\t/etc/init.d/q3ded start"
echo
einfo "The dedicated server is started under the ${GAMES_USER_DED} user account."
}
|