diff options
author | Thomas Matthijs <axxo@gentoo.org> | 2005-07-16 13:11:42 +0000 |
---|---|---|
committer | Thomas Matthijs <axxo@gentoo.org> | 2005-07-16 13:11:42 +0000 |
commit | 352a3fff3356d697023af27b36a52d6d6c698732 (patch) | |
tree | 50d3a313412a5f31af303a3759b3ab0bb402ee33 /dev-java/asm/asm-1.4.1.ebuild | |
parent | Version bump of dev-lang/sr to 2.3.3 (diff) | |
download | gentoo-2-352a3fff3356d697023af27b36a52d6d6c698732.tar.gz gentoo-2-352a3fff3356d697023af27b36a52d6d6c698732.tar.bz2 gentoo-2-352a3fff3356d697023af27b36a52d6d6c698732.zip |
readd 1.4.1 needed by groovy
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'dev-java/asm/asm-1.4.1.ebuild')
-rw-r--r-- | dev-java/asm/asm-1.4.1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-java/asm/asm-1.4.1.ebuild b/dev-java/asm/asm-1.4.1.ebuild new file mode 100644 index 000000000000..8e92c772ab98 --- /dev/null +++ b/dev-java/asm/asm-1.4.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/asm/asm-1.4.1.ebuild,v 1.1 2005/07/16 13:11:42 axxo Exp $ + +inherit java-pkg + +DESCRIPTION="Bytecode manipulation framework for Java" +HOMEPAGE="http://asm.objectweb.org" +SRC_URI="http://download.forge.objectweb.org/${PN}/ASM_${PV}_src.zip" +LICENSE="BSD" +SLOT="1.4.1" +KEYWORDS="x86 ~ppc amd64" +IUSE="doc" +DEPEND=">=virtual/jdk-1.3 + app-arch/unzip + dev-java/ant + dev-java/ant-owanttask" +RDEPEND=">=virtual/jre-1.3" + +S=${WORKDIR}/ASM/dev/ +src_unpack() { + unpack ${A} + cd ${S} + echo "objectweb.ant.tasks.path /usr/share/ant-owanttask/lib/ow_util_ant_tasks.jar" \ + >> build.properties +} + +src_compile() { + local antflags="jar" + use doc && antflags="${antflags} jdoc" + ant ${antflags} || die "compilation failed" +} + +src_install() { + for x in output/dist/lib/*.jar ; do + java-pkg_newjar ${x} $(basename ${x/-${PV}}) + done + use doc && java-pkg_dohtml -r output/dist/doc/javadoc/user/* +} + |