summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2012-09-21 17:41:20 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2012-09-21 17:41:20 +0000
commit3c608dd5e6dfc4927a27f27907ef0ed06fbea94f (patch)
treee30149f0d8836656c3bb4a206e5027ac49ecfd45 /games-board/domination
parentadded prefix support (bug #425342) (diff)
downloadgentoo-2-3c608dd5e6dfc4927a27f27907ef0ed06fbea94f.tar.gz
gentoo-2-3c608dd5e6dfc4927a27f27907ef0ed06fbea94f.tar.bz2
gentoo-2-3c608dd5e6dfc4927a27f27907ef0ed06fbea94f.zip
old
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'games-board/domination')
-rw-r--r--games-board/domination/ChangeLog6
-rw-r--r--games-board/domination/domination-1.1.0.9.ebuild51
2 files changed, 5 insertions, 52 deletions
diff --git a/games-board/domination/ChangeLog b/games-board/domination/ChangeLog
index cd9e9d7c4411..b62bc4da5a4d 100644
--- a/games-board/domination/ChangeLog
+++ b/games-board/domination/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-board/domination
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/domination/ChangeLog,v 1.5 2012/09/14 07:06:03 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-board/domination/ChangeLog,v 1.6 2012/09/21 17:41:20 mr_bones_ Exp $
+
+ 21 Sep 2012; Michael Sterrett <mr_bones_@gentoo.org>
+ -domination-1.1.0.9.ebuild:
+ old
*domination-1.1.1.1 (14 Sep 2012)
diff --git a/games-board/domination/domination-1.1.0.9.ebuild b/games-board/domination/domination-1.1.0.9.ebuild
deleted file mode 100644
index 5b919185a358..000000000000
--- a/games-board/domination/domination-1.1.0.9.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/domination/domination-1.1.0.9.ebuild,v 1.2 2012/06/28 05:39:02 mr_bones_ Exp $
-
-inherit eutils java-pkg-2 java-ant-2 games
-
-DESCRIPTION="The well-known board game, written in java"
-HOMEPAGE="http://domination.sourceforge.net"
-SRC_URI="mirror://sourceforge/domination/Domination_${PV}.zip"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND=">=virtual/jre-1.4"
-DEPEND=">=virtual/jdk-1.4
- app-arch/unzip"
-
-S=${WORKDIR}/Domination
-
-pkg_setup() {
- games_pkg_setup
- java-pkg-2_pkg_setup
-}
-
-EANT_BUILD_TARGET="game"
-
-src_compile() {
- java-pkg-2_src_compile
-}
-
-src_install() {
- mkdir -p "${D}${GAMES_PREFIX}"/bin
- cp "${S}"/FlashGUI.sh "${D}${GAMES_PREFIX}"/bin/${PN} || die
- sed -i \
- -e "s|cd.*|cd \"${GAMES_DATADIR}\"/${PN}|" \
- "${D}${GAMES_PREFIX}"/bin/${PN} \
- || die
- chmod +x "${D}${GAMES_PREFIX}"/bin/${PN} || die
-
- insinto "${GAMES_DATADIR}/${PN}"
- doins -r "${S}"/* || die
- rm -f "${D}${GAMES_DATADIR}"/${PN}/*.cmd || die
- java-pkg_regjar "${D}/${GAMES_DATADIR}/${PN}"/*.jar
-
- newicon resources/icon.png ${PN}.png
- make_desktop_entry ${PN} "Domination"
-
- prepgamesdirs
-}