summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-strategy/freecol/freecol-0.5.1.ebuild')
-rw-r--r--games-strategy/freecol/freecol-0.5.1.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/games-strategy/freecol/freecol-0.5.1.ebuild b/games-strategy/freecol/freecol-0.5.1.ebuild
deleted file mode 100644
index ebd54233b4ad..000000000000
--- a/games-strategy/freecol/freecol-0.5.1.ebuild
+++ /dev/null
@@ -1,51 +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/freecol/freecol-0.5.1.ebuild,v 1.5 2006/10/24 22:03:00 mr_bones_ Exp $
-
-inherit eutils java-ant-2 java-pkg-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.4"
-DEPEND=">=virtual/jdk-1.4
- dev-java/ant"
-
-S=${WORKDIR}/${PN}
-
-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
-}