diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-19 17:34:58 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-19 17:34:58 +0000 |
commit | 551ab8c259baddb55f2bc4298fccbe54b7a38dbb (patch) | |
tree | 4828fec03e1bf8eab26e990980aaf70d531b4754 /games-arcade/penguin-command | |
parent | Initial import (diff) | |
download | gentoo-2-551ab8c259baddb55f2bc4298fccbe54b7a38dbb.tar.gz gentoo-2-551ab8c259baddb55f2bc4298fccbe54b7a38dbb.tar.bz2 gentoo-2-551ab8c259baddb55f2bc4298fccbe54b7a38dbb.zip |
oops someone forgot me !
Diffstat (limited to 'games-arcade/penguin-command')
4 files changed, 27 insertions, 32 deletions
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 deleted file mode 100644 index 4de22e1a4aaf..000000000000 --- a/games-arcade/penguin-command/files/digest-penguin-command-1.6.5-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 efa790b662d0f8c1087d1686818b2240 penguin-command-1.6.5.tar.gz 1135830 diff --git a/games-arcade/penguin-command/files/digest-penguin-command-1.6.6 b/games-arcade/penguin-command/files/digest-penguin-command-1.6.6 new file mode 100644 index 000000000000..0138254185b2 --- /dev/null +++ b/games-arcade/penguin-command/files/digest-penguin-command-1.6.6 @@ -0,0 +1 @@ +MD5 8f32e88894464a195488e6dccb6a334f penguin-command-1.6.6.tar.gz 1157215 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 deleted file mode 100644 index 29d12bafc1e5..000000000000 --- a/games-arcade/penguin-command/penguin-command-1.6.5-r1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# 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 -} diff --git a/games-arcade/penguin-command/penguin-command-1.6.6.ebuild b/games-arcade/penguin-command/penguin-command-1.6.6.ebuild new file mode 100644 index 000000000000..387822f9c731 --- /dev/null +++ b/games-arcade/penguin-command/penguin-command-1.6.6.ebuild @@ -0,0 +1,26 @@ +# 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.6.ebuild,v 1.1 2003/09/19 17:31:09 vapier Exp $ + +inherit games + +DESCRIPTION="A clone of the classic Missile Command Game" +HOMEPAGE="http://www.linux-games.com/penguin-command/" +SRC_URI="mirror://sourceforge/penguin-command/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc" +IUSE="nls" + +DEPEND="media-libs/libpng + media-libs/jpeg-6b + >=media-libs/libsdl-1.1.5 + media-libs/sdl-mixer" + +src_install() { + make install DESTDIR=${D} || die + dodoc ChangeLog README NEWS AUTHORS + [ `use nls` ] || rm ${D}/usr/share/man/man6/*.ja.* + prepgamesdirs +} |