diff options
author | 2015-12-13 18:29:26 +0000 | |
---|---|---|
committer | 2015-12-13 19:09:07 +0000 | |
commit | 7ca9ac05fb5e4793f7fd47c0ea2b6cd7e7116ff3 (patch) | |
tree | 674b8b8c6920676bf93cea3904d0e9c05cf37f44 /dev-java/reflectasm/reflectasm-1.11.0.ebuild | |
parent | kde-misc/tellico: version bump (diff) | |
download | gentoo-7ca9ac05fb5e4793f7fd47c0ea2b6cd7e7116ff3.tar.gz gentoo-7ca9ac05fb5e4793f7fd47c0ea2b6cd7e7116ff3.tar.bz2 gentoo-7ca9ac05fb5e4793f7fd47c0ea2b6cd7e7116ff3.zip |
dev-java/reflectasm: Version bump.
Package-Manager: portage-2.2.20.1
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-java/reflectasm/reflectasm-1.11.0.ebuild')
-rw-r--r-- | dev-java/reflectasm/reflectasm-1.11.0.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-java/reflectasm/reflectasm-1.11.0.ebuild b/dev-java/reflectasm/reflectasm-1.11.0.ebuild new file mode 100644 index 000000000000..b190768c7faf --- /dev/null +++ b/dev-java/reflectasm/reflectasm-1.11.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="High performance Java reflection" +HOMEPAGE="https://github.com/EsotericSoftware/reflectasm/" +SRC_URI="https://github.com/EsotericSoftware/${PN}/archive/${P}.zip" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +CDEPEND="dev-java/asm:4" + +RDEPEND=" + ${CDEPEND} + >=virtual/jre-1.6" + +DEPEND=" + ${CDEPEND} + >=virtual/jdk-1.6" + +S="${WORKDIR}/${PN}-${P}" + +JAVA_GENTOO_CLASSPATH=" + asm-4 +" + +java_prepare() { + java-pkg_clean + rm -rf test || die +} |