diff options
Diffstat (limited to 'dev-java/asm/asm-1.4.3.ebuild')
-rw-r--r-- | dev-java/asm/asm-1.4.3.ebuild | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/dev-java/asm/asm-1.4.3.ebuild b/dev-java/asm/asm-1.4.3.ebuild deleted file mode 100644 index a1259cf5985a..000000000000 --- a/dev-java/asm/asm-1.4.3.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/asm/asm-1.4.3.ebuild,v 1.1 2004/06/27 16:32:01 zx Exp $ - -inherit java-pkg - -DESCRIPTION="Bytecode manipulation framework for Java" -HOMEPAGE="http://asm.objectweb.org" -SRC_URI="http://download.forge.objectweb.org/${PN}/${P}.tar.gz" -LICENSE="BSD" -SLOT="0" -KEYWORDS="~x86 ~ppc" -IUSE="doc" -DEPEND=">=virtual/jdk-1.3 - dev-java/ant - dev-java/ant-owanttask" -RDEPEND=">=virtual/jre-1.3" - -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_dojar $x - done - use doc && dohtml -r output/dist/doc/javadoc/user/* -} - |