blob: e58bad31a91e316d855d8f0c7f0071d24361101c (
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
40
41
42
43
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/lgeneral/lgeneral-1.1.1-r1.ebuild,v 1.7 2005/06/15 19:12:45 wolf31o2 Exp $
inherit eutils games
DATA=lgeneral-data-1.1.3
DESCRIPTION="A Panzer General clone written in SDL"
HOMEPAGE="http://lgames.sourceforge.net/index.php?project=LGeneral"
SRC_URI="mirror://sourceforge/lgeneral/${P}.tar.gz
mirror://sourceforge/lgeneral/${DATA}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
DEPEND=">=media-libs/libsdl-1.2.4
>=media-libs/sdl-mixer-1.2.3"
src_unpack() {
unpack ${A}
cd ${S}
epatch "${FILESDIR}/${PV}-netbsd-audio.patch"
}
src_compile() {
egamesconf --datadir=${GAMES_DATADIR}/../
emake || die "emake failed"
cd ${WORKDIR}/${DATA}
egamesconf --datadir=${GAMES_DATADIR}/../
emake || die "emake failed (data)"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS ChangeLog README TODO
cd ${WORKDIR}/${DATA}
make DESTDIR=${D} install || die "make install failed (data)"
prepgamesdirs
}
|