diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2011-01-30 16:49:11 +0000 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2011-01-30 16:49:11 +0000 |
commit | 6ea46289757eaf8f1fcf779fc4d2e2c71900a1ad (patch) | |
tree | bb4f236980e83c01cca9a7beea394bf640331dd9 /dev-java/javassist/javassist-3.14.0.ebuild | |
parent | ia64/s390/sh/sparc stable (diff) | |
download | gentoo-2-6ea46289757eaf8f1fcf779fc4d2e2c71900a1ad.tar.gz gentoo-2-6ea46289757eaf8f1fcf779fc4d2e2c71900a1ad.tar.bz2 gentoo-2-6ea46289757eaf8f1fcf779fc4d2e2c71900a1ad.zip |
dev-java/javassist: version bump
(Portage version: 2.1.9.35/cvs/Linux x86_64)
Diffstat (limited to 'dev-java/javassist/javassist-3.14.0.ebuild')
-rw-r--r-- | dev-java/javassist/javassist-3.14.0.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-java/javassist/javassist-3.14.0.ebuild b/dev-java/javassist/javassist-3.14.0.ebuild new file mode 100644 index 000000000000..776b030e949b --- /dev/null +++ b/dev-java/javassist/javassist-3.14.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/javassist/javassist-3.14.0.ebuild,v 1.1 2011/01/30 16:49:11 fordfrog 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/project/jboss/Javassist/${PV}.GA/javassist-${PV}-GA.zip" +HOMEPAGE="http://www.csg.is.titech.ac.jp/~chiba/javassist/" + +LICENSE="MPL-1.1" +SLOT="3" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="" +S="${WORKDIR}/${P}-GA" + +RDEPEND=">=virtual/jre-1.5" +DEPEND=">=virtual/jdk-1.5 + app-arch/unzip" + +JAVA_ANT_REWRITE_CLASSPATH="true" +EANT_DOC_TARGET="javadocs" + +src_compile() { + java-pkg-2_src_compile -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 +} |