blob: 66f2e99b2e57b74ec7f65323a25a9e2dad5171a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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-2.0_alpha.ebuild,v 1.3 2005/05/18 22:58:39 luckyduck 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="2"
KEYWORDS="x86 amd64 ppc"
IUSE="doc jikes"
DEPEND=">=virtual/jdk-1.3
jikes? ( >=dev-java/jikes-1.21 )
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"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "compilation failed"
}
src_install() {
for x in output/dist/lib/*.jar ; do
java-pkg_dojar $x
done
use doc && java-pkg_dohtml -r output/dist/doc/javadoc/user/*
}
|