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 | 3e2bd3d1f46b9d627ab46431de37e12f3bca78b0 (patch) | |
tree | 2524cf4543f14c3c0f73d0c210f3d98acb6a3a22 /dev-java/batik | |
parent | Closes #47850. (Manifest recommit) (diff) | |
download | gentoo-2-3e2bd3d1f46b9d627ab46431de37e12f3bca78b0.tar.gz gentoo-2-3e2bd3d1f46b9d627ab46431de37e12f3bca78b0.tar.bz2 gentoo-2-3e2bd3d1f46b9d627ab46431de37e12f3bca78b0.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" } |