summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2017-12-20 22:30:14 +0100
committerDavid Seifert <soap@gentoo.org>2017-12-21 02:35:48 +0100
commita9fc3683fe677686e4f4609365377d17d24bf033 (patch)
tree52f51c8056bfb1be587ffc76d4fe90f70239dbc3
parentgames-board/cockatrice: Remove old (diff)
downloadgentoo-a9fc3683fe677686e4f4609365377d17d24bf033.tar.gz
gentoo-a9fc3683fe677686e4f4609365377d17d24bf033.tar.bz2
gentoo-a9fc3683fe677686e4f4609365377d17d24bf033.zip
games-board/domination: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
-rw-r--r--games-board/domination/domination-1.1.1.6.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/games-board/domination/domination-1.1.1.6.ebuild b/games-board/domination/domination-1.1.1.6.ebuild
deleted file mode 100644
index cdf684e5c90c..000000000000
--- a/games-board/domination/domination-1.1.1.6.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-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.5"
-DEPEND=">=virtual/jdk-1.5
- 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() {
- newgamesbin "${S}"/FlashGUI.sh ${PN}
- sed -i \
- -e "s|cd.*|cd \"${GAMES_DATADIR}\"/${PN}|" \
- "${D}${GAMES_BINDIR}"/${PN} \
- || die
- chmod +x "${D}${GAMES_BINDIR}"/${PN} || die
-
- insinto "${GAMES_DATADIR}/${PN}"
- doins -r "${S}"/*
- 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
-}