blob: 30d968dc5c25f82c701b114a2322882a4d73d991 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jclasslib/jclasslib-2.0.ebuild,v 1.5 2005/04/02 18:39:44 axxo Exp $
inherit java-pkg eutils
DESCRIPTION="classlib bytecode viewer is a tool that visualizes all aspects of compiled Java class files and the contained bytecode. In addition, it contains a library that enables developers to read, modify and write Java class files and bytecode."
HOMEPAGE="http://www.ej-technologies.com/products/jclasslib/overview.html"
MY_PV=${PV/./_}
SRC_URI="mirror://sourceforge/${PN}/${PN}_unix_${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE="doc"
DEPEND=">=virtual/jdk-1.4
dev-java/ant"
RDEPEND=">=virtual/jre-1.4"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd ${S}
rm -f bin/*.jar lib-compile/*.jar .install4j/*.jar
epatch ${FILESDIR}/build.xml.patch
}
src_compile() {
ant jar || die "compile failed"
use doc && ant javadoc
}
src_install() {
dodoc license
java-pkg_dojar build/jclasslib.jar
use doc && java-pkg_dohtml -r doc/*
}
|