blob: f6d882c7f370a1a92eb44304bd0f19de3eb60d45 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-modeler/commons-modeler-1.1.ebuild,v 1.3 2004/06/24 22:23:03 agriffis Exp $
inherit java-pkg
DESCRIPTION="A lib to make the setup of Java Management Extensions easier"
SRC_URI="mirror://apache/jakarta/commons/modeler/source/modeler-1.1-src.tar.gz"
HOMEPAGE="http://jakarta.apache.org/commons/modeler.html"
LICENSE="Apache-1.1"
SLOT="0"
DEPEND=">=virtual/jdk-1.4
>=dev-java/jmx-1.2.1
>=dev-java/commons-logging-1.0.3
>=dev-java/commons-digester-1.4.1
>=dev-java/xalan-2.5.1"
KEYWORDS="x86"
IUSE="doc jikes"
S=${WORKDIR}/${P}-src
src_unpack() {
unpack "modeler-${PV}-src.tar.gz"
cd ${S}
# Setup the build environment
echo "commons-digester.jar=`java-config --classpath=commons-digester | sed s/":"/"\n"/g | tail -n 1`" >> build.properties
echo "commons-logging.jar=`java-config --classpath=commons-logging | sed s/":"/"\n"/g | tail -n 1`" >> build.properties
echo "jmx.jar=`java-config --classpath=jmx | sed s/":"/"\n"/g | head -n1`" >> build.properties
echo "jmxtools.jar=`java-config --classpath=jmx | sed s/":"/"\n"/g | tail -n1`" >> build.properties
echo "jaxp.xalan.jar=`java-config --classpath=xalan`" >> build.properties
echo "junit.jar=`java-config --classpath=junit`" >> build.properties
mkdir dist
}
src_compile() {
antflags="prepare jar"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
use doc && antflags="${antflags} javadoc"
ant ${antflags} || die "compile problem"
}
src_install () {
java-pkg_dojar dist/${PN}.jar || die "Unable to install"
dodoc LICENSE.txt RELEASE-NOTES-1.1.txt RELEASE-NOTES.txt
use doc && dohtml -r docs/*
}
|