blob: 7885fe89627f87b4fa5ad57c846230c835ff89f2 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/tenebrae/tenebrae-1.04.ebuild,v 1.10 2006/03/20 23:00:31 tupone Exp $
#ECVS_SERVER="cvs.tenebrae.sourceforge.net:/cvsroot/tenebrae"
#ECVS_MODULE="tenebrae_0"
#inherit cvs
inherit eutils games
DESCRIPTION="adds stencil shadows and per pixel lights to quake"
HOMEPAGE="http://tenebrae.sourceforge.net/"
SRC_URI="mirror://sourceforge/tenebrae/tenebraedata.zip
mirror://gentoo/${P}.tbz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="virtual/opengl
virtual/glu
media-libs/libpng
|| (
(
x11-libs/libXxf86vm
x11-libs/libXxf86dga
)
virtual/x11
)"
# sdl? ( media-libs/libsdl )"
DEPEND="${RDEPEND}
|| (
(
x11-proto/xextproto
x11-proto/xf86dgaproto
x11-proto/xf86vidmodeproto
)
virtual/x11
)
app-arch/unzip"
S=${WORKDIR}
src_unpack() {
if [[ -z ${ECVS_MODULE} ]] ; then
unpack ${A}
else
cvs_src_unpack
fi
cd tenebrae_0
epatch "${FILESDIR}"/${PV}-glhax.patch
cd linux
sed "s:-mpentiumpro -O6:${CFLAGS}:" Makefile.i386linux > Makefile
#if use sdl ; then
# cd ../sdl
# ./autogen.sh
#fi
}
src_compile() {
cd "${S}"/tenebrae_0/linux
make MASTER_DIR="${GAMES_DATADIR}/quake1" build_release || die
#if use sdl ; then
# cd ${S}/tenebrae_0/sdl
# egamesconf || die
# make || die
#fi
}
src_install() {
newgamesbin tenebrae_0/linux/release*/bin/tenebrae.run tenebrae || die "newgamesbin"
insinto "${GAMES_DATADIR}/quake1/tenebrae"
doins "${WORKDIR}"/tenebrae/* || die "doins data"
dodoc tenebrae_0/linux/README "${WORKDIR}"/Tenebrae_Readme.txt
prepgamesdirs
}
|