blob: d78bc87db57962f82a4e7f9e97c06573a11db3d6 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/wolfgl/wolfgl-0.93-r1.ebuild,v 1.8 2006/05/12 16:59:18 mr_bones_ Exp $
#ECVS_SERVER="wolfgl.cvs.sourceforge.net:/cvsroot/wolfgl"
#ECVS_MODULE="wolfgl"
#inherit cvs
inherit eutils games
DESCRIPTION="Wolfenstein and Spear of Destiny port using OpenGL"
HOMEPAGE="http://wolfgl.sourceforge.net/"
SRC_URI="mirror://gentoo/${P}.tbz2
mirror://sourceforge/wolfgl/wolfdata.zip
mirror://sourceforge/wolfgl/sdmdata.zip"
# mirror://sourceforge/wolfgl/wolfglx-wl6-${PV}.zip
# mirror://sourceforge/wolfgl/wolfglx-sod-${PV}.zip
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE=""
RDEPEND="virtual/opengl
|| (
virtual/x11
x11-proto/xproto
)"
DEPEND="${RDEPEND}
app-arch/unzip"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PV}-gcc.patch \
"${FILESDIR}"/${PV}-sample-rate.patch \
"${FILESDIR}"/${PV}-sprite.patch \
"${FILESDIR}"/${PV}-gcc4.patch
}
src_compile() {
emake -j1 CFLAGS="${CFLAGS}" DATADIR="${GAMES_DATADIR}"/${PN} \
|| die "emake failed"
}
src_install() {
newgamesbin linux/SDM/wolfgl wolfgl-sdm || die
newgamesbin linux/SOD/wolfgl wolfgl-sod || die
newgamesbin linux/WL1/wolfgl wolfgl-wl1 || die
newgamesbin linux/WL6/wolfgl wolfgl-wl6 || die
insinto "${GAMES_DATADIR}"/${PN}
doins "${WORKDIR}"/*.{sdm,wl1} || die
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
einfo "This installed the shareware data files for"
einfo "Wolfenstein 3D and Spear Of Destiny."
einfo "If you wish to play the full versions just"
einfo "copy the data files to ${GAMES_DATADIR}/${PN}/"
}
|