blob: 4093a905a60882005eb0ae43320dac728f56f5e6 (
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
34
35
36
37
38
39
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/grande-KXL/grande-KXL-0.6.ebuild,v 1.6 2005/05/12 23:39:50 mr_bones_ Exp $
inherit eutils games
DESCRIPTION="ZANAC type game"
HOMEPAGE="http://kxl.hn.org/"
SRC_URI="http://kxl.hn.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=">=dev-games/KXL-1.1.7"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PV}-configure.in.patch
aclocal && \
automake -c -a && \
autoconf || die "autotools failed"
}
src_compile() {
egamesconf \
--datadir="${GAMES_DATADIR_BASE}" \
|| die
emake || die
}
src_install() {
dodir "${GAMES_STATEDIR}"
make DESTDIR="${D}" install || die
dodoc ChangeLog README
prepgamesdirs
}
|