diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-03-22 19:40:44 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-03-22 19:40:44 +0000 |
commit | 97a817e2d45eda2001474a1f11ed84d096a0fb44 (patch) | |
tree | 82345d3ecb8e18350bb17ff545caf914c0d0815c /games-strategy | |
parent | games-strategy/freecraft is gone (diff) | |
download | gentoo-2-97a817e2d45eda2001474a1f11ed84d096a0fb44.tar.gz gentoo-2-97a817e2d45eda2001474a1f11ed84d096a0fb44.tar.bz2 gentoo-2-97a817e2d45eda2001474a1f11ed84d096a0fb44.zip |
version bump wrt #349341
(Portage version: 2.2.0_alpha168/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/triplea/ChangeLog | 7 | ||||
-rw-r--r-- | games-strategy/triplea/triplea-1.6.1.4.ebuild | 92 |
2 files changed, 98 insertions, 1 deletions
diff --git a/games-strategy/triplea/ChangeLog b/games-strategy/triplea/ChangeLog index 61479546efee..d6df68d8a1c1 100644 --- a/games-strategy/triplea/ChangeLog +++ b/games-strategy/triplea/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-strategy/triplea # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/triplea/ChangeLog,v 1.51 2013/02/10 17:23:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/triplea/ChangeLog,v 1.52 2013/03/22 19:40:44 hasufell Exp $ + +*triplea-1.6.1.4 (22 Mar 2013) + + 22 Mar 2013; Julian Ospald <hasufell@gentoo.org> +triplea-1.6.1.4.ebuild: + version bump wrt #349341 10 Feb 2013; Agostino Sarubbo <ago@gentoo.org> triplea-1.6.1.2.ebuild: Stable for ppc, wrt bug #456058 diff --git a/games-strategy/triplea/triplea-1.6.1.4.ebuild b/games-strategy/triplea/triplea-1.6.1.4.ebuild new file mode 100644 index 000000000000..d821469a3126 --- /dev/null +++ b/games-strategy/triplea/triplea-1.6.1.4.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/triplea/triplea-1.6.1.4.ebuild,v 1.1 2013/03/22 19:40:44 hasufell Exp $ + +EAPI=5 +inherit eutils java-pkg-2 java-ant-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="" +RESTRICT="test" # Needs X11 maybe use virtualx.eclass + +RDEPEND="dev-java/commons-httpclient:3 + dev-java/apple-java-extensions-bin + dev-java/commons-logging + dev-java/commons-codec + =dev-java/junit-3.8*" +DEPEND="${RDEPEND} + >=virtual/jdk-1.6 + app-arch/unzip" +RDEPEND="${RDEPEND} + >=virtual/jre-1.6" + +S=${WORKDIR}/${PN}_${MY_PV} + +pkg_setup() { + games_pkg_setup + java-pkg-2_pkg_setup +} + +src_prepare() { + sed -i \ + -e 's:"triplea":".triplea":g' \ + src/games/strategy/engine/framework/GameRunner.java || die + + rm lib/derby_10_1_2.jar || die + java-pkg_jar-from apple-java-extensions-bin AppleJavaExtensions.jar \ + lib/AppleJavaExtensions.jar + java-pkg_jar-from commons-httpclient-3 commons-httpclient.jar \ + lib/commons-httpclient-3.0.1.jar + java-pkg_jar-from commons-logging commons-logging.jar \ + lib/commons-logging-1.1.jar + java-pkg_jar-from commons-codec commons-codec.jar \ + lib/commons-codec-1.3.jar + # installs the test files + java-pkg_jar-from --into lib junit + # Needs the substance package + #java-pkg_jar-from substance substance.jar \ + # lib/substance_5_3.jar + #java-pkg_ensure-no-bundled-jars +} + +src_compile() { + eant || die + echo "triplea.saveGamesInHomeDir=true" > data/triplea.properties + # The only target creating this is zip which does unjar etc + cd classes || die + jar cf ../bin/triplea.jar * || die + rm -r * || die +} + +src_test() { + ANT_TASKS="ant-junit" eant test +} + +src_install() { + insinto "${GAMES_DATADIR}"/${PN} + doins -r assets bin data dice_servers maps + + java-pkg_regjar "${D}/${GAMES_DATADIR}"/${PN}/bin/*.jar + java-pkg_dolauncher ${PN} -into "${GAMES_PREFIX}" \ + --java_args "-Xmx256m" --main \ + games.strategy.engine.framework.GameRunner + java-pkg_dolauncher ${PN}-server -into "${GAMES_PREFIX}" \ + --java_args "-server -Xmx64m -Dtriplea.lobby.port=3303 -Dtriplea.lobby.console=true" \ + --main games.strategy.engine.lobby.server.LobbyServer + + newicon icons/triplea_icon.png ${PN}.png + newicon icons/triplea_icon.png ${PN}-server.png + make_desktop_entry ${PN} TripleA + make_desktop_entry ${PN}-server TripleA-server + + dodoc changelog.txt TripleA_RuleBook.pdf + dohtml -r doc/* readme.html + prepgamesdirs +} |