diff options
author | Chris Aniszczyk <zx@gentoo.org> | 2004-04-18 14:51:20 +0000 |
---|---|---|
committer | Chris Aniszczyk <zx@gentoo.org> | 2004-04-18 14:51:20 +0000 |
commit | ebcc2081be81be3cf283ec87549d9e9611aaadf1 (patch) | |
tree | ba136d3bd8c1f126c4bf02dcbc1b9472f0addef5 /dev-java/batik | |
parent | Closes #47850. (diff) | |
download | historical-ebcc2081be81be3cf283ec87549d9e9611aaadf1.tar.gz historical-ebcc2081be81be3cf283ec87549d9e9611aaadf1.tar.bz2 historical-ebcc2081be81be3cf283ec87549d9e9611aaadf1.zip |
Closes #47661
Diffstat (limited to 'dev-java/batik')
-rw-r--r-- | dev-java/batik/ChangeLog | 5 | ||||
-rw-r--r-- | dev-java/batik/batik-1.5.ebuild | 9 |
2 files changed, 7 insertions, 7 deletions
diff --git a/dev-java/batik/ChangeLog b/dev-java/batik/ChangeLog index e5071f4ba33d..02be6b82615b 100644 --- a/dev-java/batik/ChangeLog +++ b/dev-java/batik/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-java/batik # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/batik/ChangeLog,v 1.6 2004/04/05 05:28:14 zx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/batik/ChangeLog,v 1.7 2004/04/18 14:51:20 zx Exp $ + + 18 Apr 2004; Chris Aniszczyk <zx@gentoo.org> batik-1.5.ebuild: + Removing jikes from USE, jikes failed to build batik properly. Closes #47661 05 Apr 2004; Chris Aniszczyk <zx@gentoo.org> batik-1.1.1.ebuild: Clean up. diff --git a/dev-java/batik/batik-1.5.ebuild b/dev-java/batik/batik-1.5.ebuild index a367837e84c8..637abc594a95 100644 --- a/dev-java/batik/batik-1.5.ebuild +++ b/dev-java/batik/batik-1.5.ebuild @@ -1,17 +1,15 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/batik/batik-1.5.ebuild,v 1.3 2004/02/15 20:32:25 zx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/batik/batik-1.5.ebuild,v 1.4 2004/04/18 14:51:20 zx Exp $ inherit java-pkg DESCRIPTION="Batik is a Java(tm) technology based toolkit for applications or applets that want to use images in the Scalable Vector Graphics (SVG) format for various purposes, such as viewing, generation or manipulation." SRC_URI="http://xml.apache.org/batik/dist/${PN}-src-${PV}.zip" HOMEPAGE="http://xml.apache.org/batik/" -IUSE="doc jikes" +IUSE="doc" DEPEND=">=virtual/jdk-1.3 - dev-java/ant - jikes? ( dev-java/jikes )" - + dev-java/ant" RDEPEND=">=virtual/jdk-1.3" LICENSE="Apache-1.1" SLOT="0" @@ -25,7 +23,6 @@ src_unpack() { src_compile() { local antflags="jars" - use jikes && antflags="${antflags} -Dbuild.compiler=jikes" ant ${antflags} || die "compile problem" } |