diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-06-08 21:17:52 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-06-08 21:17:52 +0000 |
commit | d538af5110b74bdc35309485cdc1e628e1e1e28f (patch) | |
tree | 17256434726bf8832caf0a158a007fd60360a65c /games-board/megamek/megamek-0.29.10.ebuild | |
parent | Version bump, security bug #94794. (diff) | |
download | gentoo-2-d538af5110b74bdc35309485cdc1e628e1e1e28f.tar.gz gentoo-2-d538af5110b74bdc35309485cdc1e628e1e1e28f.tar.bz2 gentoo-2-d538af5110b74bdc35309485cdc1e628e1e1e28f.zip |
Initial import. Ebuild by me. Closing bug #59883.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'games-board/megamek/megamek-0.29.10.ebuild')
-rw-r--r-- | games-board/megamek/megamek-0.29.10.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/games-board/megamek/megamek-0.29.10.ebuild b/games-board/megamek/megamek-0.29.10.ebuild new file mode 100644 index 000000000000..84e8da0238fc --- /dev/null +++ b/games-board/megamek/megamek-0.29.10.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/megamek/megamek-0.29.10.ebuild,v 1.1 2005/06/08 21:17:52 wolf31o2 Exp $ +# Nonofficial ebuild by Ycarus. For new version look here : http://gentoo.zugaina.org/ + +inherit eutils games + +MY_P="MegaMek-v0.29-stable-10" +DESCRIPTION="an unofficial, online version of the Classic BattleTech board game." +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip" +HOMEPAGE="http://megamek.sourceforge.net/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" +IUSE="" +RESTRICT="nomirror" + +DEPEND=">=virtual/jdk-1.4" +RDEPEND=">=virtual/jre-1.4" + +S="${WORKDIR}" + +src_install() { + insinto "${GAMES_DATADIR}/${PN}" + doins -r * || die "Could not copy files" + games_make_wrapper megamek "java -jar MegaMek.jar" "${GAMES_DATADIR}/${PN}" + dodoc license.txt readme.txt history.txt ai-readme.txt + prepgamesdirs +} |