summaryrefslogtreecommitdiff
blob: dc2ebfeec2bf73ae9e29a5af56a1f72c1a2506dd (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/gorky17-demo/gorky17-demo-1.0.0.ebuild,v 1.1 2006/06/14 19:17:41 wolf31o2 Exp $

inherit eutils games

MY_PN="gorky17"
# Specified here, so it can be used in QA_EXECSTACK
dir=${GAMES_PREFIX_OPT}/${PN}

DESCRIPTION="Horror conspiracy game mixing elements of strategy and role-playing"
HOMEPAGE="http://www.linuxgamepublishing.com/info.php?id=gorky17"
SRC_URI="http://demofiles.linuxgamepublishing.com/${MY_PN}/${MY_PN}_demo.run"

LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RESTRICT="strip"

QA_EXECSTACK="${dir:1}/gorky17_demo ${dir:1}/gorky17_demo.dynamic"

# This multilib stuff is a mystery
RDEPEND="media-libs/alsa-lib
	x86? (
		media-libs/libsdl
		sys-libs/zlib
		|| (
			(
				x11-libs/libX11
				x11-libs/libXau
				x11-libs/libXdmcp
				x11-libs/libXext )
			virtual/x11 ) )
	amd64? (
		app-emulation/emul-linux-x86-baselibs
		app-emulation/emul-linux-x86-xlibs
		app-emulation/emul-linux-x86-soundlibs
		app-emulation/emul-linux-x86-sdl )"

S=${WORKDIR}

Ddir=${D}/${dir}

src_unpack() {
	unpack_makeself
	unpack ./data/data.tar.gz
	rm -r data lgp_* setup* bin/{Linux/*64,*BSD}
}

src_install() {
	exeinto "${dir}"
	doexe bin/Linux/x86/${MY_PN}* || die "doexe failed"

	insinto "${dir}"
	doins -r * || die "doins -r failed"
	rm -r "${Ddir}"/bin

	# gorky17_demo.dynamic has crackling audio,
	# so let's use the static binary instead.
	games_make_wrapper ${PN} ./${MY_PN}_demo "${dir}"
	newicon icon.xpm ${PN}.xpm
	make_desktop_entry ${PN} "Gorky 17 (Demo)" ${PN}.xpm

	prepgamesdirs
}

pkg_postinst() {
	games_pkg_postinst

	einfo "The instruction manual is available as:"
	einfo "   http://demofiles.linuxgamepublishing.com/gorky17/manual.pdf"
	echo
}