blob: 14c3872fe7d007d3e4045ce5f8a7a974be30c069 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils games
DESCRIPTION="Broken Sword 1: The Shadow of the Templars (interactive demo)"
HOMEPAGE="http://www.revolution.co.uk/_display.php?id=14"
SRC_URI="http://gentooexperimental.org/~unlord/bs1-demo.rar
http://gentooexperimental.org/~unlord/Sword1_Demo_Cutscenes.zip"
LICENSE="freedist"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RESTRICT="strip"
RDEPEND=">=games-engines/scummvm-0.10.0"
DEPEND="|| (
app-arch/unrar
app-arch/rar )
app-arch/unzip"
S=${WORKDIR}
dir=${GAMES_DATADIR}/${PN}
src_install() {
insinto "${dir}"
doins SWORD_INSTALL/CLUSTERS/*.{CLU,RIF} *.{dxa,fla} || die "doins failed"
doins -r SWORD_INSTALL/{MUSIC,SPEECH} || die "doins -r failed"
games_make_wrapper ${PN} "scummvm -f -p \"${dir}\" sword1demo"
doicon "${FILESDIR}/${PN}.png" || die "doicon failed"
make_desktop_entry ${PN} "Broken Sword 1 (Demo)" ${PN}.png
prepgamesdirs
}
|