blob: e4ff332678e17fe4ed6e247d04b0cb1d9dab0341 (
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/quake2-relnev/quake2-relnev-0.15.ebuild,v 1.1 2003/09/09 18:10:14 vapier Exp $
inherit games eutils gcc
MY_P=quake2-r${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="The Icculus linux port of ID's quake2 engine"
SRC_URI="http://icculus.org/quake2/files/${MY_P}.tar.gz
!noqmax? ( http://icculus.org/quake2/files/maxpak.pak )"
HOMEPAGE="http://icculus.org/quake2/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc"
IUSE="svga X sdl aalib opengl noqmax"
# default to X11 if svga/X/sdl/aalib are not in USE
DEPEND="svga? ( media-libs/svgalib )
arts? ( kde-base/arts )
X? ( virtual/x11 )
sdl? ( media-libs/libsdl )
aalib? ( media-libs/aalib )
opengl? ( virtual/opengl )
|| ( svga? ( "" ) X? ( "" ) sdl? ( "" ) aalib? ( "" ) virtual/x11 )"
PDEPEND="app-games/quake2-data"
src_unpack() {
unpack ${MY_P}.tar.gz
cd ${S}
[ `gcc-major-version` == 3 ] && epatch ${FILESDIR}/${PV}-Makefile-gcc3.patch
epatch ${FILESDIR}/${PV}-Makefile-optflags.patch
}
yesno() {
for f in $@ ; do
[ `use $f` ] || { echo NO ; return 1 ; }
done
echo YES
return 0
}
src_compile() {
BUILD_X11=`yesno X`
use sdl || use X || use svga || use aalib || BUILD_X11=YES
# xatrix fails to build
# rogue fails to build
for BUILD_QMAX in YES NO ; do
[ `use noqmax` ] && [ "${BUILD_QMAX}" == "YES" ] && continue
make clean || die "cleaning failed"
make build_release \
BUILD_SDLQUAKE2=`yesno sdl` \
BUILD_SVGA=`yesno svga` \
BUILD_X11=${BUILD_X11} \
BUILD_GLX=`yesno opengl X` \
BUILD_SDL=`yesno sdl` \
BUILD_SDLGL=`yesno sdl opengl` \
BUILD_CTFDLL=YES \
BUILD_XATRIX=NO \
BUILD_ROGUE=NO \
BUILD_JOYSTICK=`yesno joystick` \
BUILD_DEDICATED=YES \
BUILD_AA=`yesno aalib` \
BUILD_QMAX=${BUILD_QMAX} \
HAVE_IPV6=NO \
BUILD_ARTS=NO \
SDLDIR=/usr/lib \
BUILD_ARTS=`yesno arts` \
OPTCFLAGS="${CFLAGS}" \
|| die "make failed"
#HAVE_IPV6=`yesno ipv6` \
# now we save the build dir ... except for the object files ...
mv release* my-rel-${BUILD_QMAX}
cd my-rel-${BUILD_QMAX}
rm -rf ref_{gl,soft} ded game client ctf/*.o
mkdir baseq2
mv game*.so baseq2/
cd ..
done
}
src_install() {
local q2dir=${GAMES_LIBDIR}/${PN}
local q2maxdir=${GAMES_LIBDIR}/${PN}-qmax
dodoc readme.txt README TODO ${FILESDIR}/README-postinstall
# regular q2 files
dodir ${q2dir}
cp -rf my-rel-NO/* ${D}/${q2dir}
strip my-rel-NO/{*,*/*}
into ${GAMES_PREFIX}
newbin ${FILESDIR}/quake2.start quake2
newbin ${FILESDIR}/q2ded.start q2ded
if [ `use sdl` ] ; then
newbin ${FILESDIR}/sdlquake2.start sdlquake2
dosed "s:GENTOO_LIBDIR:${q2dir}:" ${GAMES_BINDIR}/sdlquake2
fi
dosed "s:GENTOO_LIBDIR:${q2dir}:" ${GAMES_BINDIR}/quake2
dosed "s:GENTOO_LIBDIR:${q2dir}:" ${GAMES_BINDIR}/q2ded
# q2max files
if [ ! `use noqmax` ] ; then
dodir ${q2maxdir}
cp -rf my-rel-YES/* ${D}/${q2maxdir}/
into ${GAMES_PREFIX}
newbin ${FILESDIR}/quake2.start quake2-qmax
newbin ${FILESDIR}/q2ded.start q2ded-qmax
if [ `use sdl` ] ; then
newbin ${FILESDIR}/sdlquake2.start sdlquake2-qmax
dosed "s:GENTOO_LIBDIR:${q2maxdir}:" ${GAMES_BINDIR}/sdlquake2-qmax
fi
dosed "s:GENTOO_LIBDIR:${q2maxdir}:" ${GAMES_BINDIR}/quake2-qmax
dosed "s:GENTOO_LIBDIR:${q2maxdir}:" ${GAMES_BINDIR}/q2ded-qmax
insinto ${q2maxdir}/baseq2
doins ${DISTDIR}/maxpak.pak
fi
prepgamesdirs
}
pkg_postinst() {
einfo "Go read /usr/share/doc/${PF}/README-postinstall.gz right now!"
einfo "It's important- This install is just the engine, you still need"
einfo "the data paks. Go read."
games_pkg_postinst
}
|