blob: d29bca8d7543d38b9ce7fae02541c743151df5be (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/megamek/megamek-0.32.0.ebuild,v 1.1 2006/10/17 21:57:48 nyhm Exp $
inherit java-ant-2 java-pkg-2 games
DESCRIPTION="an unofficial, online version of the Classic BattleTech board game"
HOMEPAGE="http://megamek.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/MegaMek-v${PV}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=">=virtual/jdk-1.5
dev-java/ant
app-arch/unzip"
RDEPEND=">=virtual/jre-1.5"
S=${WORKDIR}
src_unpack() {
unpack ${A}
cd "${S}"
rm -f *.jar
sed -i \
-e "s:/usr/share/java:${GAMES_DATADIR}/${PN}:" \
-e "s:/usr/share/MegaMek:${GAMES_DATADIR}/${PN}:" \
startup.sh || die "sed failed"
}
src_compile() {
eant || die
}
src_install() {
newgamesbin startup.sh ${PN} || die "newgamesbin failed"
insinto "${GAMES_DATADIR}/${PN}"
doins -r data l10n lib mmconf *.jar || die "doins failed"
dodoc HACKING readme.txt docs/*txt
prepgamesdirs
}
|