diff options
Diffstat (limited to 'games-strategy/triplea/triplea-0.8.2.2.ebuild')
-rw-r--r-- | games-strategy/triplea/triplea-0.8.2.2.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/games-strategy/triplea/triplea-0.8.2.2.ebuild b/games-strategy/triplea/triplea-0.8.2.2.ebuild new file mode 100644 index 000000000000..2f776d99af32 --- /dev/null +++ b/games-strategy/triplea/triplea-0.8.2.2.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/triplea/triplea-0.8.2.2.ebuild,v 1.1 2006/11/10 18:04:28 nyhm Exp $ + +inherit eutils java-ant-2 java-pkg-2 versionator games + +MY_PV=$(replace_all_version_separators _) +DESCRIPTION="An open source clone of the popular Axis and Allies boardgame" +HOMEPAGE="http://triplea.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${PN}_${MY_PV}_source_code_only.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=">=virtual/jre-1.5 + =dev-java/jgoodies-looks-1.3*" +DEPEND="${RDEPEND} + >=virtual/jdk-1.5 + dev-java/ant + app-arch/unzip" + +S=${WORKDIR}/${PN}_${MY_PV} + +src_unpack() { + unpack ${A} + cd "${S}"/lib + + rm *.jar + java-pkg_jar-from jgoodies-looks-1.3 looks.jar looks-1.3.1.jar +} + +src_compile() { + eant || die + echo "triplea.saveGamesInHomeDir=true" > classes/triplea.properties +} + +src_install() { + games_make_wrapper ${PN} \ + 'java -cp classes:$(java-config -p jgoodies-looks-1.3) \ + games.strategy.engine.framework.GameRunner' \ + "${GAMES_DATADIR}"/${PN} + + insinto "${GAMES_DATADIR}"/${PN} + doins -r classes data games images maps || die "doins failed" + + newicon icons/triplea_icon.bmp ${PN}.bmp + make_desktop_entry ${PN} TripleA /usr/share/pixmaps/${PN}.bmp + + dodoc changelog.txt + dohtml -r doc/* readme.html + prepgamesdirs +} |