blob: 18a2d7598b2c80f2bc0c74800ea7acc4dcd7cb53 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/geki3-KXL/geki3-KXL-1.0.3-r1.ebuild,v 1.1 2003/12/31 16:53:00 vapier Exp $
inherit games eutils
DESCRIPTION="2D length scroll shooting game"
SRC_URI="http://kxl.hn.org/download/${P}.tar.gz"
HOMEPAGE="http://kxl.hn.org/"
KEYWORDS="x86"
SLOT="0"
LICENSE="GPL-2"
DEPEND=">=dev-games/KXL-1.1.7"
src_unpack() {
unpack ${A}
cp -rf ${S}{,.orig}
cd ${S}
epatch ${FILESDIR}/${PV}-gentoo-paths.patch
aclocal || die "aclocal failed"
automake -a || die "automake failed"
autoconf || die "autoconf failed"
}
src_install() {
make DESTDIR=${D} install || die
dodoc ChangeLog README
prepgamesdirs
}
|