You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
52 lines
1.1 KiB
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
inherit eutils java-pkg-2 java-ant-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 x86"
|
|
IUSE=""
|
|
|
|
DEPEND=">=virtual/jdk-1.5
|
|
app-arch/unzip"
|
|
RDEPEND=">=virtual/jre-1.5"
|
|
|
|
S=${WORKDIR}
|
|
|
|
pkg_setup() {
|
|
games_pkg_setup
|
|
java-pkg-2_pkg_setup
|
|
}
|
|
|
|
src_prepare() {
|
|
rm -v *.jar || die
|
|
edos2unix startup.sh
|
|
sed -i \
|
|
-e "s:XmX:Xmx:" \
|
|
-e "s:/usr/share/java:${GAMES_DATADIR}/${PN}:" \
|
|
-e "s:/usr/share/MegaMek:${GAMES_DATADIR}/${PN}:" \
|
|
startup.sh || die "sed failed"
|
|
java-pkg-2_src_prepare
|
|
}
|
|
|
|
src_compile() {
|
|
eant
|
|
}
|
|
|
|
src_install() {
|
|
newgamesbin startup.sh ${PN}
|
|
insinto "${GAMES_DATADIR}/${PN}"
|
|
doins -r data docs l10n lib mmconf *.jar readme*
|
|
dodoc HACKING readme.txt
|
|
make_desktop_entry ${PN} MegaMek /usr/share/pixmaps/${PN}.gif
|
|
newicon data/images/misc/megamek-icon.gif ${PN}.gif
|
|
prepgamesdirs
|
|
}
|