blob: ff5e7611f167828202d29ed5985397b269c3155b (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/jrisk/jrisk-1.0.9.4.ebuild,v 1.1 2008/02/13 19:24:09 mr_bones_ Exp $
inherit eutils java-pkg-2 java-ant-2 games
DESCRIPTION="The well-known board game, written in java"
HOMEPAGE="http://jrisk.sourceforge.net"
SRC_URI="mirror://sourceforge/jrisk/backup_of_Risk_${PV}.zip"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=virtual/jre-1.4"
DEPEND=">=virtual/jdk-1.4
app-arch/unzip"
S=${WORKDIR}/Risk
pkg_setup() {
games_pkg_setup
java-pkg-2_pkg_setup
}
EANT_BUILD_TARGET="game"
src_compile() {
java-pkg-2_src_compile
}
src_install() {
java-pkg_dolauncher ${PN} \
-into "${GAMES_PREFIX}" \
--main risk.ui.FlashGUI.MainMenu \
--pwd "${GAMES_DATADIR}/${PN}"
insinto "${GAMES_DATADIR}/${PN}"
doins -r build/game/* || die "doins failed"
rm -f "${D}${GAMES_DATADIR}"/${PN}/*.cmd || die
java-pkg_regjar "${D}/${GAMES_DATADIR}/${PN}"/*.jar
newicon build/game/resources/risk.png ${PN}.png
make_desktop_entry ${PN} "Risk"
prepgamesdirs
}
|