| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-util/jarwizard/jarwizard-2.50.ebuild,v 1.4 2010/08/15 11:26:11 armin76 Exp $
|
| 4 |
|
| 5 |
inherit java-pkg-2 java-ant-2
|
| 6 |
|
| 7 |
DESCRIPTION="Takes the hassle out of creating executable JAR files for your Java programs"
|
| 8 |
SRC_URI="mirror://sourceforge/jarwizard/${PN}_${PV/./}_src.zip"
|
| 9 |
HOMEPAGE="http://sourceforge.net/projects/jarwizard/"
|
| 10 |
SLOT="0"
|
| 11 |
LICENSE="GPL-2"
|
| 12 |
KEYWORDS="~amd64 ~ppc x86"
|
| 13 |
DEPEND=">=virtual/jdk-1.5
|
| 14 |
app-arch/unzip"
|
| 15 |
RDEPEND=">=virtual/jre-1.5"
|
| 16 |
|
| 17 |
IUSE=""
|
| 18 |
|
| 19 |
S="${WORKDIR}/${PN}"
|
| 20 |
|
| 21 |
src_unpack() {
|
| 22 |
unpack ${A}
|
| 23 |
java-ant_bsfix_one "${S}/nbproject/build-impl.xml"
|
| 24 |
}
|
| 25 |
|
| 26 |
src_install() {
|
| 27 |
java-pkg_dojar dist/*.jar
|
| 28 |
java-pkg_dolauncher ${PN} --main JarWizard
|
| 29 |
}
|