blob: 18b1eecaecd6d6d319c066719979e0220c3cc60d (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/freecol/freecol-0.7.0.ebuild,v 1.1 2007/07/19 21:41:00 nyhm Exp $
WANT_ANT_TASKS="ant-nodeps"
inherit eutils java-pkg-2 java-ant-2 games
DESCRIPTION="An open source clone of the game Colonization"
HOMEPAGE="http://www.freecol.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND="dev-java/higlayout"
DEPEND="${RDEPEND}
test? (
dev-java/ant-junit
dev-java/ant-trax
)
>=virtual/jdk-1.6"
RDEPEND="${RDEPEND}
>=virtual/jre-1.6"
S=${WORKDIR}/${PN}
pkg_setup() {
games_pkg_setup
java-pkg-2_pkg_setup
}
src_unpack() {
unpack ${A}
cd "${S}"
rm -v FreeCol.jar jars/* */*/*.jar || die
epatch "${FILESDIR}"/${P}-home.patch
sed -i "/Class-Path/s:jars/.*$:$(java-pkg_getjars higlayout):" \
src/MANIFEST.MF \
|| die "sed failed"
cd jars
java-pkg_jar-from higlayout
}
# Default would be from games
src_compile() {
eant
}
src_test() {
java-pkg_jar-from --into test/lib junit
ANT_TASKS="ant-junit ant-trax ant-nodeps" eant testall
}
src_install () {
insinto "${GAMES_DATADIR}"/${PN}
doins -r data || die "doins failed"
java-pkg_jarinto "${GAMES_DATADIR}"/${PN}
java-pkg_dojar FreeCol.jar
java-pkg_dolauncher ${PN} \
-into "${GAMES_PREFIX}" \
--pwd "${GAMES_DATADIR}"/${PN} \
--java_args -Xmx512M
dodoc README || die
doicon ${PN}.xpm || die
make_desktop_entry ${PN} FreeCol ${PN}.xpm || die
prepgamesdirs
}
|