summaryrefslogtreecommitdiff
blob: 36ddadacefb4c08271088ce0c868d03e9010de94 (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
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils games

DESCRIPTION="The Dig (interactive demo)"
HOMEPAGE="http://dig.mixnmojo.com/"
SRC_URI="http://gentooexperimental.org/~unlord/${PN}.rar"

LICENSE="freedist"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
RESTRICT="strip"

RDEPEND=">=games-engines/scummvm-0.8.2"
DEPEND="|| (
	app-arch/unrar
	app-arch/rar )"

S=${WORKDIR}/digdemo
dir=${GAMES_DATADIR}/${PN}

src_install() {
	insinto "${dir}"
	doins dig.la0 dig.la1 || die "doins failed"
	doins -r audio video || die "doins -r failed"

	games_make_wrapper ${PN} "scummvm -f -p \"${dir}\" dig"
	doicon "${FILESDIR}/${PN}.png" || die "doicon failed"
	make_desktop_entry ${PN} "The Dig (Demo)" ${PN}.png

	prepgamesdirs
}