blob: 20b1095d998363e79834c810de1d49d1358f8002 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# 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.2_beta8.ebuild,v 1.1 2005/10/29 21:50:21 mr_bones_ Exp $
inherit eutils games
DATA=pg-data
MY_P="${P/_/}"
MY_P="${MY_P/beta/beta-}"
DESCRIPTION="A Panzer General clone written in SDL"
HOMEPAGE="http://lgames.sourceforge.net/index.php?project=LGeneral"
SRC_URI="mirror://sourceforge/lgeneral/${MY_P}.tar.gz
mirror://sourceforge/lgeneral/${DATA}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=media-libs/libsdl-1.2.4
>=media-libs/sdl-mixer-1.2.3"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
# Build a temporary lgc-pg that knows about /var/tmp/portage in work/lgc-pg:
cp -pPR "${S}" "${WORKDIR}/lgc-pg" || die "cp failed."
}
src_compile() {
egamesconf \
--disable-dependency-tracking \
--datadir="${GAMES_DATADIR}/../" || die
emake || die "emake failed"
# Build the temporary lgc-pg:
cd "${WORKDIR}/lgc-pg"
egamesconf --datadir="${D}/${GAMES_DATADIR_BASE}" || die
cd lgc-pg
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed."
keepdir "${GAMES_DATADIR}/${PN}/"{ai_modules,music,terrain}
# Generate scenario data:
"${WORKDIR}/lgc-pg/lgc-pg/lgc-pg" \
-s "${WORKDIR}/${DATA}" \
-d "${D}/${GAMES_DATADIR}/lgeneral" \
|| die "Failed to generate scenario data."
dodoc AUTHORS ChangeLog README.lgeneral README.lgc-pg TODO
newicon lgeneral48.png ${PN}.png
make_desktop_entry lgeneral LGeneral
prepgamesdirs
}
|