diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 19:29:16 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 19:29:16 +0000 |
commit | 6b2c6aa5f4161d5fcd009e3e5f2e9d84539b25f3 (patch) | |
tree | 5578c0bf4dcb7768e6bc8e22c99c359d60cb6c8e /games-action/phobiaii | |
parent | games action and arcade (diff) | |
download | historical-6b2c6aa5f4161d5fcd009e3e5f2e9d84539b25f3.tar.gz historical-6b2c6aa5f4161d5fcd009e3e5f2e9d84539b25f3.tar.bz2 historical-6b2c6aa5f4161d5fcd009e3e5f2e9d84539b25f3.zip |
action games !
Diffstat (limited to 'games-action/phobiaii')
-rw-r--r-- | games-action/phobiaii/ChangeLog | 11 | ||||
-rw-r--r-- | games-action/phobiaii/Manifest | 4 | ||||
-rw-r--r-- | games-action/phobiaii/files/digest-phobiaii-1.1 | 1 | ||||
-rw-r--r-- | games-action/phobiaii/files/playphobiaII | 7 | ||||
-rw-r--r-- | games-action/phobiaii/phobiaii-1.1.ebuild | 45 |
5 files changed, 68 insertions, 0 deletions
diff --git a/games-action/phobiaii/ChangeLog b/games-action/phobiaii/ChangeLog new file mode 100644 index 000000000000..47f2afb29ee0 --- /dev/null +++ b/games-action/phobiaii/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-games/phobiaii +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/phobiaii/ChangeLog,v 1.1 2003/09/10 19:29:16 vapier Exp $ + +*phobiaii-1.1 (12 Dec 2002) + + 09 May 2003; Martin Holzer <mholzer@gentoo.org> phobiaii-1.1.ebuild: + Added sys-libs/lib-compat to DEPEND. Closes #17321. + + 12 Dec 2002; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me for #4616. diff --git a/games-action/phobiaii/Manifest b/games-action/phobiaii/Manifest new file mode 100644 index 000000000000..22a1d16c1ec5 --- /dev/null +++ b/games-action/phobiaii/Manifest @@ -0,0 +1,4 @@ +MD5 83fc785f7f4aa8a43a2b6096bf7d7af2 ChangeLog 481 +MD5 5f0cab0427024346cd2333f4d8340804 phobiaii-1.1.ebuild 1053 +MD5 f5f5935f1a3cdc6772885e15007ad7e3 files/digest-phobiaii-1.1 74 +MD5 4088e19f98cacfc36ad1906ba086a08c files/playphobiaII 272 diff --git a/games-action/phobiaii/files/digest-phobiaii-1.1 b/games-action/phobiaii/files/digest-phobiaii-1.1 new file mode 100644 index 000000000000..ce731e005268 --- /dev/null +++ b/games-action/phobiaii/files/digest-phobiaii-1.1 @@ -0,0 +1 @@ +MD5 e5d3deac8f4c03a3fd3855c5a2449535 linuxphobia-1.1-i386.tar.bz2 7709686 diff --git a/games-action/phobiaii/files/playphobiaII b/games-action/phobiaii/files/playphobiaII new file mode 100644 index 000000000000..363cbb103b2d --- /dev/null +++ b/games-action/phobiaii/files/playphobiaII @@ -0,0 +1,7 @@ +#!/bin/bash +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/phobiaii/files/playphobiaII,v 1.1 2003/09/10 19:29:16 vapier Exp $ + +cd /opt/phobiaii +./linuxphobia diff --git a/games-action/phobiaii/phobiaii-1.1.ebuild b/games-action/phobiaii/phobiaii-1.1.ebuild new file mode 100644 index 000000000000..9219acab0a20 --- /dev/null +++ b/games-action/phobiaii/phobiaii-1.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/phobiaii/phobiaii-1.1.ebuild,v 1.1 2003/09/10 19:29:16 vapier Exp $ + +inherit games + +MY_P="linuxphobia-${PV}" +DESCRIPTION="Just a moment ago, you were safe inside your ship, behind five inch armour" +HOMEPAGE="http://www.lynxlabs.com/games/linuxphobia/index.html" +SRC_URI="http://www.lynxlabs.com/games/linuxphobia/${MY_P}-i386.tar.bz2" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="x86" + +DEPEND="" +RDEPEND="media-libs/sdl-mixer + media-libs/libsdl + media-libs/libvorbis + media-libs/libogg + media-libs/smpeg + dev-libs/DirectFB + media-libs/libggi + sys-libs/lib-compat + media-libs/libgii + media-sound/esound + media-libs/audiofile + virtual/x11 + media-libs/svgalib + media-libs/aalib + sys-libs/ncurses" + +S=${WORKDIR}/${MY_P} + +src_install() { + dodoc README + rm setup-link.sh README + + dodir ${GAMES_PREFIX_OPT}/${PN} + mv * ${D}/${GAMES_PREFIX_OPT}/${PN}/ + + dogamesbin ${FILESDIR}/playphobiaII + + prepgamesdirs +} |