blob: 66da5f4e2944cf5fa4e290e852f73d53f1bc8068 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/javassist/javassist-3.4.ebuild,v 1.8 2008/06/30 19:55:37 ken69267 Exp $
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
# TODO add notes about where the distfile comes from
DESCRIPTION="Javassist makes Java bytecode manipulation simple."
SRC_URI="mirror://sourceforge/jboss/${P}.zip"
HOMEPAGE="http://www.csg.is.titech.ac.jp/~chiba/javassist/"
LICENSE="MPL-1.1"
SLOT="3"
KEYWORDS="amd64 ppc ~ppc64 x86"
IUSE=""
RDEPEND=">=virtual/jre-1.4"
DEPEND=">=virtual/jdk-1.4
app-arch/unzip"
src_unpack() {
unpack ${A}
cd "${S}"
rm -v *.jar || die
java-ant_rewrite-classpath build.xml
}
src_compile() {
eant clean jar $(use_doc javadocs) -Dgentoo.classpath=$(java-config --tools)
}
src_install() {
java-pkg_dojar ${PN}.jar
dohtml Readme.html || die
use doc && java-pkg_dojavadoc html
use source && java-pkg_dosrc src/main/javassist
}
|