You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/cglib/cglib-3.0.ebuild

52 lines
1.2 KiB

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
JAVA_PKG_IUSE="doc examples source test"
inherit java-pkg-2 java-ant-2
DESCRIPTION="cglib is a powerful, high performance and quality Code Generation Library"
HOMEPAGE="http://cglib.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${PN}-src-${PV}.jar"
LICENSE="Apache-2.0"
SLOT="3"
KEYWORDS="amd64 ppc ppc64 x86"
# Fails some tests on ppc(64) due to memory-related issues that are
# probably VM-specific but harmless enough.
RESTRICT="ppc? ( test ) ppc64? ( test )"
COMMON_DEP="dev-java/asm:4
dev-java/ant-core:0"
RDEPEND=">=virtual/jre-1.6
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.6
test? ( dev-java/junit:4 )
${COMMON_DEP}"
S="${WORKDIR}"
JAVA_ANT_REWRITE_CLASSPATH="yes"
EANT_GENTOO_CLASSPATH="asm-4 ant-core"
java_prepare() {
find . -iname '*.jar' -delete || die
epatch "${FILESDIR}"/${P}-build.xml.patch
}
src_install() {
java-pkg_newjar dist/${P}.jar ${PN}.jar
use doc && java-pkg_dojavadoc docs
use source && java-pkg_dosrc src/proxy/net
use examples && java-pkg_doexamples --subdir samples src/proxy/samples
}
src_test() {
java-pkg-2_src_test
}