diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-11-08 20:52:20 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-11-08 20:52:20 +0000 |
commit | e006ac47c60beb95c2b4564e1b85031de7243c77 (patch) | |
tree | 64a5ab23aba0ea3a78a82247e4ffadf82cf6f1b9 /games-board | |
parent | old (diff) | |
download | historical-e006ac47c60beb95c2b4564e1b85031de7243c77.tar.gz historical-e006ac47c60beb95c2b4564e1b85031de7243c77.tar.bz2 historical-e006ac47c60beb95c2b4564e1b85031de7243c77.zip |
old
Package-Manager: portage-2.0.51.22-r3
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/jrisk/Manifest | 2 | ||||
-rw-r--r-- | games-board/jrisk/files/digest-jrisk-1.0.8.2 | 1 | ||||
-rw-r--r-- | games-board/jrisk/jrisk-1.0.8.2.ebuild | 51 |
3 files changed, 0 insertions, 54 deletions
diff --git a/games-board/jrisk/Manifest b/games-board/jrisk/Manifest index d4001a662667..c2fac114c171 100644 --- a/games-board/jrisk/Manifest +++ b/games-board/jrisk/Manifest @@ -1,8 +1,6 @@ MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 MD5 74121b09b46836291612de8b3352c702 jrisk-1.0.8.3.ebuild 1290 MD5 6c384143ddbbeba8341fb8952dc0df0b ChangeLog 752 -MD5 995b9ba10a703764254e4efbdce45a9d jrisk-1.0.8.2.ebuild 1290 MD5 0915c1b474d2731ec5eeb504175966a7 jrisk-1.0.7.6.ebuild 1288 MD5 20bc6dc8768de2c7a65d02f715ab0f43 files/digest-jrisk-1.0.8.3 72 -MD5 734a8168a5fd7e066dbf92a62cf2e060 files/digest-jrisk-1.0.8.2 72 MD5 1c7181125aed14e8e720dca1b7a2fc46 files/digest-jrisk-1.0.7.6 66 diff --git a/games-board/jrisk/files/digest-jrisk-1.0.8.2 b/games-board/jrisk/files/digest-jrisk-1.0.8.2 deleted file mode 100644 index f50dbc79c62c..000000000000 --- a/games-board/jrisk/files/digest-jrisk-1.0.8.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 182d6e6a3b426a30552aed51a5ba2fd7 backup_of_Risk_1.0.8.2.zip 9387425 diff --git a/games-board/jrisk/jrisk-1.0.8.2.ebuild b/games-board/jrisk/jrisk-1.0.8.2.ebuild deleted file mode 100644 index 6cc064582770..000000000000 --- a/games-board/jrisk/jrisk-1.0.8.2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/jrisk/jrisk-1.0.8.2.ebuild,v 1.1 2005/10/18 23:46:30 mr_bones_ Exp $ - -inherit eutils games - -DESCRIPTION="The well-known board game, written in java" -HOMEPAGE="http://jrisk.sourceforge.net" -SRC_URI="mirror://sourceforge/jrisk/backup_of_Risk_${PV}.zip" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="jikes" - -RDEPEND=">=virtual/jre-1.4" -DEPEND=">=virtual/jdk-1.4 - app-arch/unzip - >=dev-java/ant-core-1.4.1 - jikes? ( >=dev-java/jikes-1.17 )" - -S=${WORKDIR} - -src_compile() { - local antflags="game" - - if use jikes; then - antflags="${antflags} -Dbuild.compiler=jikes" - fi - ant ${antflags} || die "failed to build" - # change the cd directory of the executable - # has to be done after the ant compilation - sed \ - -e "/dirname/ s:.*:cd \"${GAMES_DATADIR}/${PN}\":" \ - "${S}"/build/game/FlashGUI.sh \ - > "${T}"/jrisk \ - || die "sed failed" -} - -src_install() { - dogamesbin "${T}"/jrisk || die "dogamesbin failed" - - insinto "${GAMES_DATADIR}/${PN}" - doins -r build/game/* || die "doins failed" - rm -f "${D}${GAMES_DATADIR}"/${PN}/*.cmd - - newicon build/game/resources/risk.png ${PN}.png - make_desktop_entry ${PN} "Risk" - - prepgamesdirs -} |