blob: e8b6facddda89d618cc9c342e7ea24e4c8e162ed (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/anaglyph-stereo-quake/anaglyph-stereo-quake-130100-r1.ebuild,v 1.4 2004/06/03 22:46:36 mr_bones_ Exp $
inherit games gcc eutils
DESCRIPTION="play Quake in 3D with red - blue glasses"
HOMEPAGE="http://home.iprimus.com.au/crbean/"
SRC_URI="http://home.iprimus.com.au/crbean/zip/3dGLQuake_SRC_${PV}.zip
mirror://gentoo/${P}-SDL.patch.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/x11
virtual/opengl
media-libs/libsdl"
S="${WORKDIR}/WinQuake"
src_unpack() {
unpack ${A}
cd ${S}
mv GLQUAKE.H glquake.h
mv GL_DRAW.C gl_draw.c
mv GL_RMAIN.C gl_rmain.c
epatch ${FILESDIR}/stupid-dosformat.patch
mv Makefile{.linuxi386,}
epatch ${FILESDIR}/makefile-path-fixes.patch
epatch ${FILESDIR}/fix-sys_printf.patch
epatch ${FILESDIR}/makefile-cflags.patch
epatch ${FILESDIR}/gentoo-paths.patch
epatch ${WORKDIR}/${P}-SDL.patch
}
src_compile() {
make \
OPTFLAGS="${CFLAGS}" \
GENTOO_DATADIR=${GAMES_DATADIR}/quake-data \
build_release \
|| die "failed to build WinQuake"
}
src_install() {
newgamesbin release*/bin/glquake.sdl anaglyph-stereo-quake
dodoc ${WORKDIR}/readme.id.txt
dohtml ${WORKDIR}/3dquake.html
prepgamesdirs
}
|