blob: e76893e2e24f2f60ffb5bf5684d8898063d774fd (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/alienwave/alienwave-0.3.0.ebuild,v 1.2 2004/12/02 23:53:13 mr_bones_ Exp $
inherit games
DESCRIPTION="An ncurses-based Xenon clone"
HOMEPAGE="http://www.cs.unibo.it/~pira/alienwave/aw.html"
SRC_URI="http://www.cs.unibo.it/~pira/alienwave/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="sys-libs/ncurses"
S="${WORKDIR}/${PN}"
src_install() {
dogamesbin alienwave || die "dogamesbin failed"
dodoc TO_DO README STORY
prepgamesdirs
}
|