diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-26 22:59:25 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-26 22:59:25 +0000 |
commit | 9d881774316852e799611441d930b66d654a028d (patch) | |
tree | 4ae8bb99750f938879dea22773366bd67a2202d9 /games-strategy/triplea | |
parent | Updated CVS snapshot. (diff) | |
download | historical-9d881774316852e799611441d930b66d654a028d.tar.gz historical-9d881774316852e799611441d930b66d654a028d.tar.bz2 historical-9d881774316852e799611441d930b66d654a028d.zip |
clean older ebuilds
Diffstat (limited to 'games-strategy/triplea')
-rw-r--r-- | games-strategy/triplea/Manifest | 4 | ||||
-rw-r--r-- | games-strategy/triplea/files/digest-triplea-0.4.1 | 1 | ||||
-rw-r--r-- | games-strategy/triplea/files/digest-triplea-0.4.3 | 1 | ||||
-rw-r--r-- | games-strategy/triplea/triplea-0.4.1.ebuild | 83 | ||||
-rw-r--r-- | games-strategy/triplea/triplea-0.4.3.ebuild | 83 |
5 files changed, 0 insertions, 172 deletions
diff --git a/games-strategy/triplea/Manifest b/games-strategy/triplea/Manifest index 37c99dae398d..3e6c958bcd8a 100644 --- a/games-strategy/triplea/Manifest +++ b/games-strategy/triplea/Manifest @@ -1,8 +1,4 @@ MD5 c9c4ef95e470f3ff2bca43cbd35865f1 ChangeLog 1633 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 -MD5 f178482c6622b6026a2e84a0c8d55061 triplea-0.4.1.ebuild 2202 -MD5 bf89c6ec6697af7612acfed8fccafd34 triplea-0.4.3.ebuild 2202 MD5 521fe824e2e2cbbf8b7ec01576bc24c7 triplea-0.4.8.ebuild 2000 -MD5 a198b5809f0349039916442e5d471116 files/digest-triplea-0.4.1 70 -MD5 5a02a3f5a523eb690d9800418dc285ad files/digest-triplea-0.4.3 70 MD5 b609ff3eb027151169803aa25b5edd75 files/digest-triplea-0.4.8 70 diff --git a/games-strategy/triplea/files/digest-triplea-0.4.1 b/games-strategy/triplea/files/digest-triplea-0.4.1 deleted file mode 100644 index 93c97271a321..000000000000 --- a/games-strategy/triplea/files/digest-triplea-0.4.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 67c3493171a7c0758eaecb70c3a42a4e triplea_source_0_4_1.zip 6305303 diff --git a/games-strategy/triplea/files/digest-triplea-0.4.3 b/games-strategy/triplea/files/digest-triplea-0.4.3 deleted file mode 100644 index 98a904ee78f7..000000000000 --- a/games-strategy/triplea/files/digest-triplea-0.4.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 1d7030f20fd2520b4745847f4746e182 triplea_source_0_4_3.zip 6366730 diff --git a/games-strategy/triplea/triplea-0.4.1.ebuild b/games-strategy/triplea/triplea-0.4.1.ebuild deleted file mode 100644 index 3bc9ab565ee5..000000000000 --- a/games-strategy/triplea/triplea-0.4.1.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/triplea/triplea-0.4.1.ebuild,v 1.3 2004/06/24 23:29:29 agriffis Exp $ - -inherit games - -MY_PV=${PV//\./_} -S="${WORKDIR}/${PN}_${MY_PV}" - -DESCRIPTION="An open source clone of the popular Axis and Allies boardgame" -HOMEPAGE="http://triplea.sf.net" -SRC_URI="mirror://sourceforge/${PN}/${PN}_source_${MY_PV}.zip" - -LICENSE="GPL-2" -KEYWORDS="x86 amd64 ~ppc" -SLOT="0" -IUSE="jikes" - -RDEPEND="|| ( - >=virtual/jdk-1.4 - >=virtual/jre-1.4 - )" -DEPEND="${RDEPEND} - >=sys-apps/sed-4 - app-arch/unzip - >=dev-java/ant-1.4.1 - dev-java/junit - jikes? ( >=dev-java/jikes-1.17 )" - - -src_unpack() { - unpack ${A} - cd ${S} - - # Change saved games directory to ~/.triplea/savedGames - sed -i \ - -e "/DEFAULT_DIRECTORY =/ s:GameRunner.getRootFolder():System.getProperties().get(\"user.home\") + \"/.triplea\":" \ - -e 's/DEFAULT_DIRECTORY.mkdir()/DEFAULT_DIRECTORY.mkdirs()/' \ - src/games/strategy/engine/framework/ui/SaveGameFileChooser.java \ - || die "sed SaveGameFileChooser.java failed" - - # Repair bad path in .ant.properties (bug #47437) - sed -i \ - -e "s:home/sgb/dev/junit/junit3.8.1:usr/share/junit/lib:" \ - .ant.properties \ - || die "sed .ant.properties failed" -} - -src_compile() { - local antflags= - - if [ -z "$JAVA_HOME" ]; then - einfo - einfo "\$JAVA_HOME not set!" - einfo "Please use java-config to configure your JVM and try again." - einfo - die "\$JAVA_HOME not set." - fi - - if use jikes ; then - antflags="-Dbuild.compiler=jikes" - fi - - ant ${antflags} || die "compile problem" - jar cf "lib/${P}.jar" -C classes . || die "jar problem" -} - -src_install () { - # The sourcecode currently assumes the game is being run from a directory - # one level below the installation root. - cat >"${T}/${PN}" <<-EOF - #!/bin/sh - - cd "${GAMES_DATADIR}/${PN}/lib" - java -mx96M -cp \\ - ../data:../lib/plastic-1.2.0.jar:../lib/${P}.jar \\ - games.strategy.engine.framework.GameRunner - EOF - dogamesbin "${T}/${PN}" || die "dogamesbin failed" - dodir "${GAMES_DATADIR}/${PN}" - cp -R data/ games/ lib/ "${D}${GAMES_DATADIR}/${PN}" || die "cp failed" - prepgamesdirs -} diff --git a/games-strategy/triplea/triplea-0.4.3.ebuild b/games-strategy/triplea/triplea-0.4.3.ebuild deleted file mode 100644 index 9e5047cdb284..000000000000 --- a/games-strategy/triplea/triplea-0.4.3.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/triplea/triplea-0.4.3.ebuild,v 1.2 2004/06/24 23:29:29 agriffis Exp $ - -inherit games - -MY_PV=${PV//\./_} -S="${WORKDIR}/${PN}_${MY_PV}" - -DESCRIPTION="An open source clone of the popular Axis and Allies boardgame" -HOMEPAGE="http://triplea.sf.net" -SRC_URI="mirror://sourceforge/${PN}/${PN}_source_${MY_PV}.zip" - -LICENSE="GPL-2" -KEYWORDS="x86 amd64 ~ppc" -SLOT="0" -IUSE="jikes" - -RDEPEND="|| ( - >=virtual/jdk-1.4 - >=virtual/jre-1.4 - )" -DEPEND="${RDEPEND} - >=sys-apps/sed-4 - app-arch/unzip - >=dev-java/ant-1.4.1 - dev-java/junit - jikes? ( >=dev-java/jikes-1.17 )" - - -src_unpack() { - unpack ${A} - cd ${S} - - # Change saved games directory to ~/.triplea/savedGames - sed -i \ - -e "/DEFAULT_DIRECTORY =/ s:GameRunner.getRootFolder():System.getProperties().get(\"user.home\") + \"/.triplea\":" \ - -e 's/DEFAULT_DIRECTORY.mkdir()/DEFAULT_DIRECTORY.mkdirs()/' \ - src/games/strategy/engine/framework/ui/SaveGameFileChooser.java \ - || die "sed SaveGameFileChooser.java failed" - - # Repair bad path in .ant.properties (bug #47437) - sed -i \ - -e "s:home/sgb/dev/junit/junit3.8.1:usr/share/junit/lib:" \ - .ant.properties \ - || die "sed .ant.properties failed" -} - -src_compile() { - local antflags= - - if [ -z "$JAVA_HOME" ]; then - einfo - einfo "\$JAVA_HOME not set!" - einfo "Please use java-config to configure your JVM and try again." - einfo - die "\$JAVA_HOME not set." - fi - - if use jikes ; then - antflags="-Dbuild.compiler=jikes" - fi - - ant ${antflags} || die "compile problem" - jar cf "lib/${P}.jar" -C classes . || die "jar problem" -} - -src_install () { - # The sourcecode currently assumes the game is being run from a directory - # one level below the installation root. - cat >"${T}/${PN}" <<-EOF - #!/bin/sh - - cd "${GAMES_DATADIR}/${PN}/lib" - java -mx96M -cp \\ - ../data:../lib/plastic-1.2.0.jar:../lib/${P}.jar \\ - games.strategy.engine.framework.GameRunner - EOF - dogamesbin "${T}/${PN}" || die "dogamesbin failed" - dodir "${GAMES_DATADIR}/${PN}" - cp -R data/ games/ lib/ "${D}${GAMES_DATADIR}/${PN}" || die "cp failed" - prepgamesdirs -} |