summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-02-12 18:56:37 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-02-12 18:56:37 +0000
commit6bc8fedd29ff3bd882884f5389e7d76a22f4b509 (patch)
treeedec69d16c5e0a24d9c08c9d0d484db23fbed209 /games-strategy
parentkeyworded ~arch for x86, bug 209691 (diff)
downloadgentoo-2-6bc8fedd29ff3bd882884f5389e7d76a22f4b509.tar.gz
gentoo-2-6bc8fedd29ff3bd882884f5389e7d76a22f4b509.tar.bz2
gentoo-2-6bc8fedd29ff3bd882884f5389e7d76a22f4b509.zip
clean out old ebuild, ppc keyword dropped until they pick up the newer java
(Portage version: 2.1.3.19)
Diffstat (limited to 'games-strategy')
-rw-r--r--games-strategy/freecol/ChangeLog6
-rw-r--r--games-strategy/freecol/freecol-0.5.3.ebuild57
2 files changed, 5 insertions, 58 deletions
diff --git a/games-strategy/freecol/ChangeLog b/games-strategy/freecol/ChangeLog
index 1919f71eb076..fd5bd43bb804 100644
--- a/games-strategy/freecol/ChangeLog
+++ b/games-strategy/freecol/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-strategy/freecol
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/freecol/ChangeLog,v 1.26 2008/01/21 21:58:37 caster Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/freecol/ChangeLog,v 1.27 2008/02/12 18:56:37 mr_bones_ Exp $
+
+ 12 Feb 2008; Michael Sterrett <mr_bones_@gentoo.org>
+ -freecol-0.5.3.ebuild:
+ clean out old ebuild, ppc keyword dropped until they pick up the newer java
21 Jan 2008; Vlastimil Babka <caster@gentoo.org> freecol-0.5.3.ebuild:
Remove dependency on whole dev-java/ant.
diff --git a/games-strategy/freecol/freecol-0.5.3.ebuild b/games-strategy/freecol/freecol-0.5.3.ebuild
deleted file mode 100644
index 288087525431..000000000000
--- a/games-strategy/freecol/freecol-0.5.3.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/freecol/freecol-0.5.3.ebuild,v 1.5 2008/01/21 21:58:37 caster Exp $
-
-WANT_ANT_TASKS="ant-nodeps"
-
-inherit eutils java-pkg-2 java-ant-2 games
-
-DESCRIPTION="An open source clone of the game Colonization"
-HOMEPAGE="http://www.freecol.org/"
-SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE=""
-
-RDEPEND=">=virtual/jre-1.5"
-DEPEND=">=virtual/jdk-1.5"
-
-S=${WORKDIR}/${PN}
-
-pkg_setup() {
- games_pkg_setup
- java-pkg-2_pkg_setup
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- rm -f FreeCol.jar
-
- sed -i \
- -e '/saveDirectory/s/freecol/.freecol/' \
- src/net/sf/freecol/FreeCol.java \
- || die "sed failed"
-
- epatch "${FILESDIR}"/${P}-build.patch
-}
-
-src_compile() {
- eant || die
-}
-
-src_install () {
- insinto "${GAMES_DATADIR}/${PN}"
- doins -r FreeCol.jar data/ jars/ || die "doins failed"
-
- games_make_wrapper ${PN} "java -Xmx512M -jar FreeCol.jar" \
- "${GAMES_DATADIR}"/${PN}
-
- dodoc README
- doicon ${PN}.xpm
- make_desktop_entry ${PN} FreeCol ${PN}.xpm
- prepgamesdirs
-}