diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-05-12 21:50:56 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-05-12 21:50:56 +0000 |
commit | 04d13d68000e02c8107cb9fb54b56d7969cc4c37 (patch) | |
tree | 3a1746ab515cc0a9bdf445a719edd67b1e569fca /games-action | |
parent | Stable on alpha. (Manifest recommit) (diff) | |
download | gentoo-2-04d13d68000e02c8107cb9fb54b56d7969cc4c37.tar.gz gentoo-2-04d13d68000e02c8107cb9fb54b56d7969cc4c37.tar.bz2 gentoo-2-04d13d68000e02c8107cb9fb54b56d7969cc4c37.zip |
Moved from spacetripperdemo to spacetripper-demo.
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/spacetripper-demo/ChangeLog | 18 | ||||
-rw-r--r-- | games-action/spacetripper-demo/Manifest | 4 | ||||
-rw-r--r-- | games-action/spacetripper-demo/files/digest-spacetripper-demo-1 | 1 | ||||
-rw-r--r-- | games-action/spacetripper-demo/metadata.xml | 5 | ||||
-rw-r--r-- | games-action/spacetripper-demo/spacetripper-demo-1.ebuild | 39 |
5 files changed, 67 insertions, 0 deletions
diff --git a/games-action/spacetripper-demo/ChangeLog b/games-action/spacetripper-demo/ChangeLog new file mode 100644 index 000000000000..066b8c00b8fc --- /dev/null +++ b/games-action/spacetripper-demo/ChangeLog @@ -0,0 +1,18 @@ +# ChangeLog for games-action/spacetripperdemo +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/spacetripper-demo/ChangeLog,v 1.1 2004/05/12 21:50:56 wolf31o2 Exp $ + +*spacetripper-demo-1 (12 May 2004) + + 12 May 2004; Chris Gianelloni <wolf31o2@gentoo.org> +metadata.xml, + +spacetripper-demo-1.ebuild: + Moved from spacetripperdemo to spacetripper-demo. + + 19 Apr 2004; Chris Gianelloni <wolf31o2@gentoo.org> + spacetripperdemo-1.ebuild: + Added IUSE and check_license. + +*spacetripperdemo-1 (07 Jul 2003) + + 07 Jul 2003; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. diff --git a/games-action/spacetripper-demo/Manifest b/games-action/spacetripper-demo/Manifest new file mode 100644 index 000000000000..8a25ca6ca9a7 --- /dev/null +++ b/games-action/spacetripper-demo/Manifest @@ -0,0 +1,4 @@ +MD5 ebeed613ea8b9c1bfda4ae5a134e24e0 spacetripperdemo-1.ebuild 831 +MD5 f77b742937eecb5ba914c24dc4a2fff8 ChangeLog 488 +MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 +MD5 6a0fa9710525ff8873539df94f5c3986 files/digest-spacetripperdemo-1 65 diff --git a/games-action/spacetripper-demo/files/digest-spacetripper-demo-1 b/games-action/spacetripper-demo/files/digest-spacetripper-demo-1 new file mode 100644 index 000000000000..1111e06e72ee --- /dev/null +++ b/games-action/spacetripper-demo/files/digest-spacetripper-demo-1 @@ -0,0 +1 @@ +MD5 f3131ce641ff36becd879b6790e4ca6f spacetripperdemo.sh 5179095 diff --git a/games-action/spacetripper-demo/metadata.xml b/games-action/spacetripper-demo/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-action/spacetripper-demo/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>games</herd> +</pkgmetadata> diff --git a/games-action/spacetripper-demo/spacetripper-demo-1.ebuild b/games-action/spacetripper-demo/spacetripper-demo-1.ebuild new file mode 100644 index 000000000000..62d8c2f0084d --- /dev/null +++ b/games-action/spacetripper-demo/spacetripper-demo-1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/spacetripper-demo/spacetripper-demo-1.ebuild,v 1.1 2004/05/12 21:50:56 wolf31o2 Exp $ + +inherit games eutils + +MY_P="spacetripperdemo" +DESCRIPTION="hardcore arcade shoot-em-up" +HOMEPAGE="http://www.pompom.org.uk/" +SRC_URI="http://www.btinternet.com/%7Ebongpig/${MY_P}.sh" + +LICENSE="POMPOM" +SLOT="0" +KEYWORDS="-* x86" +IUSE="" + +S=${WORKDIR} + +src_unpack() { + check_license + unpack_makeself +} + +src_install() { + local dir=${GAMES_PREFIX_OPT}/${PN} + dodir ${dir} ${GAMES_BINDIR} + + cp -r preview run styles ${D}/${dir}/ + + exeinto ${dir} + doexe bin/x86/* + dosed "s:XYZZY:${dir}:" ${dir}/${PN} + dosym ${dir}/spacetripperdemo ${GAMES_BINDIR}/${PN} + + insinto ${dir} + doins README license.txt icon.xpm + + prepgamesdirs +} |