blob: 0af496c48d216e13c54a31c9ca8c6041e1ea89c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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.2 2003/09/19 23:28:00 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
>=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
}
|