diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-09-21 18:39:15 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-09-21 18:39:15 +0000 |
commit | 509ee24ad7455abfa53366484005c35d76f61eb3 (patch) | |
tree | a171fa2ca19ef714bdc9ba8b897ff18badcb5271 /dev-java/xalan/xalan-2.4-r1.ebuild | |
parent | New version of gradm ... versions of gradm need to stay in sync with grsec ve... (diff) | |
download | historical-509ee24ad7455abfa53366484005c35d76f61eb3.tar.gz historical-509ee24ad7455abfa53366484005c35d76f61eb3.tar.bz2 historical-509ee24ad7455abfa53366484005c35d76f61eb3.zip |
Fixes #8187
Diffstat (limited to 'dev-java/xalan/xalan-2.4-r1.ebuild')
-rw-r--r-- | dev-java/xalan/xalan-2.4-r1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-java/xalan/xalan-2.4-r1.ebuild b/dev-java/xalan/xalan-2.4-r1.ebuild new file mode 100644 index 000000000000..648e5d860c45 --- /dev/null +++ b/dev-java/xalan/xalan-2.4-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/xalan/xalan-2.4-r1.ebuild,v 1.1 2002/09/21 18:39:15 karltk Exp $ + +DESCRIPTION="XSLT processor" +HOMEPAGE="http://xml.apache.org/xalan-j/index.html" +LICENSE="Apache-1.1" +DEPEND=">=virtual/jdk-1.2 + >=dev-java/ant-1.4.1 + jikes? ( >=dev-java/jikes-1.15 )" +RDEPEND="$DEPEND" +SRC_URI="http://xml.apache.org/dist/xalan-j/${PN}-j_2_4_0-src.tar.gz" +S=${WORKDIR}/${PN}-j_2_4_0 +LICENSE="Apache-1.1" +SLOT="0" +KEYWORDS="x86" + +src_compile() { + local myc + + # FIXME: Compiling with Jikes does not work properly yet. + + use jikes && \ + myc="${myc} -Dbuild.compiler=jikes" || + myc="${myc} -Dbuild.compiler=classic" + + ant jar docs javadocs ${myc} +} + +src_install () { + dojar build/xalan.jar + + dohtml readme.html + dohtml -r build/docs/* +} |