blob: 72e50cb3ce8cf53a9dc991b8d3c6474f15b1bebf (
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
27
28
29
30
31
32
33
|
# Copyright 1999-2006 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.8 2007/02/22 05:19:52 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="amd64 ~ppc ~sparc x86"
IUSE=""
DEPEND="sys-libs/ncurses"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "s/-O2/${CFLAGS}/" \
-e '/strip/d' \
Makefile || die "sed failed"
}
src_install() {
dogamesbin alienwave || die "dogamesbin failed"
dodoc TO_DO README STORY
prepgamesdirs
}
|