summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Thomson <wltjr@gentoo.org>2007-10-24 06:44:30 +0000
committerWilliam Thomson <wltjr@gentoo.org>2007-10-24 06:44:30 +0000
commit5e6abf4226beea937d2a3af6c365d8c291a8de31 (patch)
tree9830b1b2a2e592bdb2dcbe4a30e39018e06d97ec /games-strategy/triplea
parentRemoved java gen 1 ebuild (diff)
downloadgentoo-2-5e6abf4226beea937d2a3af6c365d8c291a8de31.tar.gz
gentoo-2-5e6abf4226beea937d2a3af6c365d8c291a8de31.tar.bz2
gentoo-2-5e6abf4226beea937d2a3af6c365d8c291a8de31.zip
Removed java gen 1 ebuild
(Portage version: 2.1.3.15)
Diffstat (limited to 'games-strategy/triplea')
-rw-r--r--games-strategy/triplea/ChangeLog6
-rw-r--r--games-strategy/triplea/files/digest-triplea-0.6.0.13
-rw-r--r--games-strategy/triplea/triplea-0.6.0.1.ebuild78
3 files changed, 5 insertions, 82 deletions
diff --git a/games-strategy/triplea/ChangeLog b/games-strategy/triplea/ChangeLog
index 8d8bb4e6376d..fa158eade2b0 100644
--- a/games-strategy/triplea/ChangeLog
+++ b/games-strategy/triplea/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-strategy/triplea
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/triplea/ChangeLog,v 1.35 2007/08/14 05:24:19 wltjr Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/triplea/ChangeLog,v 1.36 2007/10/24 06:44:29 wltjr Exp $
+
+ 24 Oct 2007; William L. Thomson Jr. <wltjr@gentoo.org>
+ -triplea-0.6.0.1.ebuild:
+ Removed java gen 1 ebuild
14 Aug 2007; William L. Thomson Jr. <wltjr@gentoo.org>
triplea-0.9.0.2-r1.ebuild:
diff --git a/games-strategy/triplea/files/digest-triplea-0.6.0.1 b/games-strategy/triplea/files/digest-triplea-0.6.0.1
deleted file mode 100644
index 82ccf0452f05..000000000000
--- a/games-strategy/triplea/files/digest-triplea-0.6.0.1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 30137f64b8264c3820e90ce78e624f30 triplea_source_0_6_0_1.zip 9365353
-RMD160 beff9ccb1e5673f05447ff1a4ebc5660da41539f triplea_source_0_6_0_1.zip 9365353
-SHA256 a2761c96e49a8931b0c771351bf595c69dd41ed51e29589cc706348412305fc4 triplea_source_0_6_0_1.zip 9365353
diff --git a/games-strategy/triplea/triplea-0.6.0.1.ebuild b/games-strategy/triplea/triplea-0.6.0.1.ebuild
deleted file mode 100644
index c4995284f3cc..000000000000
--- a/games-strategy/triplea/triplea-0.6.0.1.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# 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.6.0.1.ebuild,v 1.7 2006/01/27 19:32:23 hansmi Exp $
-
-inherit eutils java-utils java-pkg games
-
-MY_PV=${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="amd64 ppc x86"
-SLOT="0"
-IUSE="doc jikes"
-
-RDEPEND=">=virtual/jre-1.4
- =dev-java/jgoodies-looks-1.3*
- dev-java/backport-util-concurrent"
-
-DEPEND=">=virtual/jdk-1.4
- dev-java/ant-core
- app-arch/unzip
- jikes? ( >=dev-java/jikes-1.17 )
- ${RDEPEND}"
-
-S="${WORKDIR}/${PN}_${MY_PV}"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- epatch "${FILESDIR}/${P}-gentoo.patch"
-
- cat > "${T}/${PN}" <<-EOF
- #!/bin/bash
-
- cd "${GAMES_DATADIR}/${PN}"
- java -Dtriplea.root="${GAMES_DATADIR}/${PN}" \\
- -cp \$(java-config -p triplea,jgoodies-looks-1.3,backport-util-concurrent) \\
- games.strategy.engine.framework.GameRunner
- EOF
-
- # The default savedGames directory is in the install root. This
- # sets it to use the users home directory.
- echo "triplea.saveGamesInHomeDir=true" > triplea.properties
-
- cd lib/
- rm *.jar
- java-pkg_jar-from jgoodies-looks-1.3
- java-pkg_jar-from backport-util-concurrent
-}
-
-src_compile() {
- local antflags="jar"
-
- use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
- use doc && antflags="${antflags} javadoc"
-
- ant ${antflags} || die "compile problem"
-}
-
-src_install () {
- dodoc changelog.txt
- java-pkg_dohtml readme.html
-
- if use doc; then
- java-pkg_dohtml -r api
- java-pkg_dohtml -r doc/*
- fi
- java-pkg_dojar ${PN}.jar
-
- dogamesbin "${T}/${PN}" || die "dogamesbin failed"
-
- insinto "${GAMES_DATADIR}/${PN}"
- doins -r games/ || die "doins failed"
- prepgamesdirs
-}