forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
megamek-0.34.10-r1.ebuild
50 lines (40 loc) · 1.03 KB
/
megamek-0.34.10-r1.ebuild
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-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils java-pkg-2 java-ant-2
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() {
java-pkg-2_pkg_setup
}
src_prepare() {
default
rm -v *.jar || die
edos2unix startup.sh
sed -i \
-e "s:XmX:Xmx:" \
-e "s:/usr/share/java:/usr/share/${PN}:" \
-e "s:/usr/share/MegaMek:/usr/share/${PN}:" \
startup.sh || die "sed failed"
java-pkg-2_src_prepare
}
src_compile() {
eant
}
src_install() {
newbin startup.sh ${PN}
insinto /usr/share/${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
}