blob: 4e0030aabdfe127e125ff30eead59a99b03c8834 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-rpg/pcgen/pcgen-5.8.0.ebuild,v 1.1 2005/06/05 00:05:24 mr_bones_ Exp $
inherit games
MY_PV="${PV//.}"
DESCRIPTION="D&D character generator"
HOMEPAGE="http://pcgen.sourceforge.net"
SRC_URI="mirror://sourceforge/pcgen/pcgen${MY_PV}_full.zip
mirror://sourceforge/pcgen/skin.zip"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha ~amd64 ppc sparc x86"
IUSE=""
RDEPEND="|| (
>=virtual/jdk-1.3.1
>=virtual/jre-1.3.1 )"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}
src_unpack() {
unpack pcgen${MY_PV}_full.zip
cd "${S}"
mv pcgen${MY_PV} ${PN}
cd pcgen
unpack skin.zip
# bat file? bat file? We don't need no stinking bat file.
rm pcgen.bat pcgen_high_mem.bat
sed -i \
"/dirname/ c\cd \"${GAMES_DATADIR}\/${PN}\"" \
pcgen.sh \
|| die "sed pcgen.sh failed"
mv pcgen.sh "${T}/pcgen" || die "mv failed"
echo "pcgen.filepaths=user" > "${S}/pcgen/filepaths.ini" \
|| die "filepaths.ini creation failed"
}
src_install() {
dogamesbin "${T}/pcgen" || die "dogamesbin failed"
cd "${S}"/pcgen
dodir "${GAMES_DATADIR}/${PN}"
cp -R "${WORKDIR}"/* "${D}/${GAMES_DATADIR}" || die "cp failed"
keepdir "${GAMES_DATADIR}/${PN}/characters"
prepgamesdirs
}
|