diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-02-23 12:33:46 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-02-23 12:33:46 +0000 |
commit | 007f56a138fd90865e7d1e1376b17dac71027904 (patch) | |
tree | 344ea70006dc41b881ce95cb410ad151f0bbd743 /games-action | |
parent | Initial revision. Ebuild submitted by Michael C. Ferguson <mcf@augustmail.com... (diff) | |
download | historical-007f56a138fd90865e7d1e1376b17dac71027904.tar.gz historical-007f56a138fd90865e7d1e1376b17dac71027904.tar.bz2 historical-007f56a138fd90865e7d1e1376b17dac71027904.zip |
initial commit (bug #42569)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/shootingstar/ChangeLog | 10 | ||||
-rw-r--r-- | games-action/shootingstar/Manifest | 4 | ||||
-rw-r--r-- | games-action/shootingstar/files/digest-shootingstar-1.2.0 | 1 | ||||
-rw-r--r-- | games-action/shootingstar/metadata.xml | 9 | ||||
-rw-r--r-- | games-action/shootingstar/shootingstar-1.2.0.ebuild | 27 |
5 files changed, 51 insertions, 0 deletions
diff --git a/games-action/shootingstar/ChangeLog b/games-action/shootingstar/ChangeLog new file mode 100644 index 000000000000..3d61087f5360 --- /dev/null +++ b/games-action/shootingstar/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for games-action/shootingstar +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/shootingstar/ChangeLog,v 1.1 2004/02/23 12:33:46 mr_bones_ Exp $ + +*shootingstar-1.2.0 (23 Feb 2004) + + 23 Feb 2004; Michael Sterrett <mr_bones_@gentoo.org> metadata.xml, + shootingstar-1.2.0.ebuild: + initial commit; ebuild submitted by Thomas Preissler via bug #42569 (modified) + diff --git a/games-action/shootingstar/Manifest b/games-action/shootingstar/Manifest new file mode 100644 index 000000000000..e0de89dbeee0 --- /dev/null +++ b/games-action/shootingstar/Manifest @@ -0,0 +1,4 @@ +MD5 a30c9d4ce8f9629d6d7323eaab258343 metadata.xml 241 +MD5 074bc1f236750a6b4d3750c11ec9ca43 shootingstar-1.2.0.ebuild 680 +MD5 0b660be23027b24f08e9f599dc3e5c9e ChangeLog 450 +MD5 e213ef0a24782b487d5eabba35b82063 files/digest-shootingstar-1.2.0 71 diff --git a/games-action/shootingstar/files/digest-shootingstar-1.2.0 b/games-action/shootingstar/files/digest-shootingstar-1.2.0 new file mode 100644 index 000000000000..4bb051bdb379 --- /dev/null +++ b/games-action/shootingstar/files/digest-shootingstar-1.2.0 @@ -0,0 +1 @@ +MD5 6cd6e11ec00be95a0a5b5e4cd3649ace shootingstar-1.2.0.tar.gz 7755911 diff --git a/games-action/shootingstar/metadata.xml b/games-action/shootingstar/metadata.xml new file mode 100644 index 000000000000..1cef6e243af3 --- /dev/null +++ b/games-action/shootingstar/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>games</herd> +<maintainer> +<email>games@gentoo.org</email> +<name>Games Team</name> +</maintainer> +</pkgmetadata> diff --git a/games-action/shootingstar/shootingstar-1.2.0.ebuild b/games-action/shootingstar/shootingstar-1.2.0.ebuild new file mode 100644 index 000000000000..bc08b3ef191c --- /dev/null +++ b/games-action/shootingstar/shootingstar-1.2.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/shootingstar/shootingstar-1.2.0.ebuild,v 1.1 2004/02/23 12:33:46 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="A topdown shooter" +HOMEPAGE="http://www.2ndpoint.fi/ss" +SRC_URI="http://www.2ndpoint.fi/ss/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND="virtual/x11 + virtual/opengl + virtual/glu + >=media-libs/libsdl-1.2 + media-libs/sdl-mixer + media-libs/sdl-image" + +src_install () { + make DESTDIR=${D} install || die "make install failed" + dodoc AUTHORS ChangeLog NEWS README TODO + prepgamesdirs +} |