blob: 11177d06d854881795f9b499823af7f141dcbc48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-launcher/commons-launcher-0.9-r1.ebuild,v 1.9 2007/05/05 13:42:10 betelgeuse Exp $
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Commons-launcher eliminates the need for a batch or shell script to launch a Java class."
HOMEPAGE="http://jakarta.apache.org/commons/launcher/"
SRC_URI="ftp://ftp.ibiblio.org/pub/mirrors/apache/jakarta/commons/launcher/source/launcher-0.9-src.tar.gz"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="amd64 ~ppc ppc64 x86 ~x86-fbsd"
DEPEND=">=virtual/jdk-1.4"
RDEPEND=">=virtual/jre-1.4
dev-java/ant-core"
S=${WORKDIR}/${PN}
src_compile() {
java-ant_rewrite-classpath "${S}/build.xml"
EANT_GENTOO_CLASSPATH="ant-core" java-pkg-2_src_compile
}
src_install() {
java-pkg_dojar dist/bin/*.jar || die "java-pkg_dojar died"
dohtml *.html || die
use doc && java-pkg_dohtml dist/docs/api
use source && java-pkg_dosrc src/java/*
}
|