diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 19:29:22 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-10 19:29:22 +0000 |
commit | 2d06451b949706e2e14d1e9cdbdedf30613ca779 (patch) | |
tree | e4defbc5a7848f65ff263eb968fe9f97f4e1a5f1 /games-arcade/penguin-command | |
parent | action games ! (diff) | |
download | historical-2d06451b949706e2e14d1e9cdbdedf30613ca779.tar.gz historical-2d06451b949706e2e14d1e9cdbdedf30613ca779.tar.bz2 historical-2d06451b949706e2e14d1e9cdbdedf30613ca779.zip |
arcade games !
Diffstat (limited to 'games-arcade/penguin-command')
4 files changed, 63 insertions, 0 deletions
diff --git a/games-arcade/penguin-command/ChangeLog b/games-arcade/penguin-command/ChangeLog new file mode 100644 index 000000000000..e20394b39fea --- /dev/null +++ b/games-arcade/penguin-command/ChangeLog @@ -0,0 +1,28 @@ +# ChangeLog for app-games/penguin-command +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/penguin-command/ChangeLog,v 1.1 2003/09/10 19:29:21 vapier Exp $ + + 12 Jul 2003; Michael Sterrett <msterret@gentoo.org> + penguin-command-1.6.5-r1.ebuild: + fix DESCRIPTION; tidy; error messages + +*penguin-command-1.6.5-r1 (28 Jul 2002) + + 01 Nov 2002; Jon Nall <nall@gentoo.org> penguin-command-1.6.5-r1.ebuild : + added ppc to KEYWORDS + + 18 Oct 2002; Daniel Ahlberg <aliz@gentoo.org> penguin-command-1.6.5-r1.ebuild : + Updated to mirror://sourceforge in SRC_URI. + + 28 jul 2002; Gabriele Giorgetti <stroke@gentoo.org> penguin-command-1.6.5-r1.ebuild : + Added version number to deps. (Also fixes bug #5668) + +*penguin-command-1.6.5, (23 May 2002) + + 17 jul 2002; Jose Alberto Suárez López <bass@gentoo.org> penguin-command-1.6.5.ebuild : + Added KEYWORDS, SLOT. + + 23 May 2002; George Shapovalov <george@gentoo.org> Changelog : + + Initial release + diff --git a/games-arcade/penguin-command/Manifest b/games-arcade/penguin-command/Manifest new file mode 100644 index 000000000000..380ab5efdb85 --- /dev/null +++ b/games-arcade/penguin-command/Manifest @@ -0,0 +1,3 @@ +MD5 6127cb8f93ff95de4a80e467325de285 ChangeLog 1019 +MD5 590d9abab13a77146f236598dea16c50 penguin-command-1.6.5-r1.ebuild 939 +MD5 5f3edf0810b66c15e202c2f63b386561 files/digest-penguin-command-1.6.5-r1 74 diff --git a/games-arcade/penguin-command/files/digest-penguin-command-1.6.5-r1 b/games-arcade/penguin-command/files/digest-penguin-command-1.6.5-r1 new file mode 100644 index 000000000000..4de22e1a4aaf --- /dev/null +++ b/games-arcade/penguin-command/files/digest-penguin-command-1.6.5-r1 @@ -0,0 +1 @@ +MD5 efa790b662d0f8c1087d1686818b2240 penguin-command-1.6.5.tar.gz 1135830 diff --git a/games-arcade/penguin-command/penguin-command-1.6.5-r1.ebuild b/games-arcade/penguin-command/penguin-command-1.6.5-r1.ebuild new file mode 100644 index 000000000000..29d12bafc1e5 --- /dev/null +++ b/games-arcade/penguin-command/penguin-command-1.6.5-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/penguin-command/penguin-command-1.6.5-r1.ebuild,v 1.1 2003/09/10 19:29:21 vapier Exp $ + +DESCRIPTION="A clone of the classic Missile Command Game" +SRC_URI="mirror://sourceforge/penguin-command/${P}.tar.gz" +HOMEPAGE="http://www.linux-games.com/penguin-command/" + +KEYWORDS="x86 ppc" +SLOT="0" +LICENSE="GPL-2" + +DEPEND=">=media-libs/libpng-1.2.4 + >=media-libs/jpeg-6b + >=media-libs/libsdl-1.2.4 + >=media-libs/sdl-mixer-1.2.4" + +src_compile() { + ./configure --host=${CHOST} --prefix=/usr \ + --mandir=/usr/share/man \ + --datadir=/usr/share || die "configure failed" + emake || die "emake failed" +} + +src_install () { + make prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + datadir=${D}/usr/share install || die "make install failed" + + dodoc COPYING ChangeLog INSTALL README NEWS AUTHORS +} |