]> Pileus Git - ~andy/sunrise/commitdiff
games-rpg/simon1-demo: New ebuild for bug 142359
authorNathan Egge (unlord) <nathanegge@yahoo.com>
Thu, 23 Aug 2007 01:48:47 +0000 (01:48 +0000)
committerNathan Egge (unlord) <nathanegge@yahoo.com>
Thu, 23 Aug 2007 01:48:47 +0000 (01:48 +0000)
svn path=/sunrise/; revision=4483

games-rpg/simon1-demo/ChangeLog [new file with mode: 0644]
games-rpg/simon1-demo/Manifest [new file with mode: 0644]
games-rpg/simon1-demo/files/simon1-demo.png [new file with mode: 0644]
games-rpg/simon1-demo/metadata.xml [new file with mode: 0644]
games-rpg/simon1-demo/simon1-demo-1.ebuild [new file with mode: 0644]

diff --git a/games-rpg/simon1-demo/ChangeLog b/games-rpg/simon1-demo/ChangeLog
new file mode 100644 (file)
index 0000000..d40d3ad
--- /dev/null
@@ -0,0 +1,8 @@
+# ChangeLog for games-rpg/simon1-demo
+# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+  23 Aug 2007; Nathan Egge (unlord) <nathanegge@yahoo.com>
+  +files/simon1-demo.png, +metadata.xml, +simon1-demo-1.ebuild:
+  New ebuild for bug 142359
+
diff --git a/games-rpg/simon1-demo/Manifest b/games-rpg/simon1-demo/Manifest
new file mode 100644 (file)
index 0000000..5fdf8cd
--- /dev/null
@@ -0,0 +1,5 @@
+AUX simon1-demo.png 386 RMD160 50e8cafc3095567a204fd5ba04f8a11d6a378ba7 SHA1 09a9a7abcbe071f65b33dd12f7edf7845d52e6d5 SHA256 809252c454444ff296e2e893248335a27b2d1d5ff654ff873520d4a895eec7f3
+DIST simon1demo_acorn.rar 14942956 RMD160 69ce883f9b9e7569815ca743027f813816d1ac80 SHA1 0cd6c2a3dbe131707aaad4997dc286bb0ab560d9 SHA256 30cc894e5c228812e59f083dd2454a1d0064acfed4e8e61998ef98053d153d5f
+EBUILD simon1-demo-1.ebuild 837 RMD160 539a2874c29be91e55235f67e2f59f5ddcf868e4 SHA1 d26cc1b5d229001469ca4b17a774dd8af5231538 SHA256 41a0f9f23a900b8a492ddab94e81cb84a33b3973e77c8b789fc6909ca3c5f37c
+MISC ChangeLog 274 RMD160 f6a618bae9e4bfe3041b0e9267c2333030eee7c6 SHA1 aebfbf2e82ba414fd1a9b28c9bacef3743698caa SHA256 d8f90489311a5f58595f797d63ef5345062712d26f203c544af5ccd55cd44126
+MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42
diff --git a/games-rpg/simon1-demo/files/simon1-demo.png b/games-rpg/simon1-demo/files/simon1-demo.png
new file mode 100644 (file)
index 0000000..1923823
Binary files /dev/null and b/games-rpg/simon1-demo/files/simon1-demo.png differ
diff --git a/games-rpg/simon1-demo/metadata.xml b/games-rpg/simon1-demo/metadata.xml
new file mode 100644 (file)
index 0000000..7e32869
--- /dev/null
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>maintainer-wanted</herd>
+</pkgmetadata>
diff --git a/games-rpg/simon1-demo/simon1-demo-1.ebuild b/games-rpg/simon1-demo/simon1-demo-1.ebuild
new file mode 100644 (file)
index 0000000..c6d0fc8
--- /dev/null
@@ -0,0 +1,35 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+inherit games
+
+DESCRIPTION="Simon the Sorcerer (interactive demo)"
+HOMEPAGE="http://www.adventuresoft.com/gs1.html"
+SRC_URI="http://gentooexperimental.org/~unlord/simon1demo_acorn.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}
+dir=${GAMES_DATADIR}/${PN}
+
+src_install() {
+       insinto "${dir}"
+       doins DATA EFFECTS SIMON || die "doins failed"
+       doins -r EXECUTE || die "doins -r failed"
+
+       games_make_wrapper ${PN} "scummvm -f -p \"${dir}\" simon1"
+       doicon "${FILESDIR}/${PN}.png" || die "doicon failed"
+       make_desktop_entry ${PN} "Simon the Sorcerer 1 (Demo)" ${PN}.png
+
+       prepgamesdirs
+}