blob: 61dcaa6bd1ca9e4003f39686d4e9e9c852fddd35 (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/heretic2-demo/heretic2-demo-1.06a.ebuild,v 1.12 2012/12/27 08:51:42 tupone Exp $
EAPI=4
inherit eutils unpacker multilib games
DESCRIPTION="Third-person classic magical action-adventure game"
HOMEPAGE="http://www.lokigames.com/products/heretic2/
http://www.hereticii.com/"
SRC_URI="mirror://lokigames/loki_demos/${PN}.run"
LICENSE="LOKI-EULA"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RESTRICT="strip"
QA_TEXTRELS="${GAMES_PREFIX_OPT:1}/heretic2-demo/ref_glx.so"
DEPEND="games-util/loki_patch"
RDEPEND="x86? (
x11-libs/libX11
x11-libs/libXext
x11-libs/libXau
x11-libs/libXdmcp )
amd64? (
app-emulation/emul-linux-x86-xlibs
app-emulation/emul-linux-x86-compat )"
S=${WORKDIR}
dir=${GAMES_PREFIX_OPT}/${PN}
Ddir=${D}/${dir}
QA_PREBUILT="${dir:1}/*"
src_install() {
local demo="data/demos/heretic2_demo"
local exe="heretic2_demo.x86"
loki_patch patch.dat data/ || die "loki patch failed"
# Remove bad opengl library
rm -r "${demo}/gl_drivers/"
# Change to safe default of 800x600 and option of normal opengl driver
sed -i "${demo}"/base/default.cfg \
-e "s:fullscreen \"1\":fullscreen \"1\"\nset vid_mode \"4\":" \
-e "s:libGL:/usr/$(get_libdir)/libGL:" \
|| die "sed failed"
insinto "${dir}"
exeinto "${dir}"
doins -r "${demo}"/*
doexe "${demo}/${exe}"
games_make_wrapper ${PN} "./${exe}" "${dir}" "${dir}"
newicon "${demo}"/icon.xpm ${PN}.xpm
make_desktop_entry ${PN} "Heretic 2 (Demo)" ${PN}
prepgamesdirs
}
|