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/easymock/easymock-3.2-r1.ebuild

59 lines
1.2 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/easymock/easymock-3.2-r1.ebuild,v 1.2 2015/04/02 18:05:14 mr_bones_ Exp $
EAPI="5"
JAVA_PKG_IUSE="doc examples source"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Provides Mock Objects for interfaces in JUnit tests by generating them on the fly"
HOMEPAGE="http://www.easymock.org/"
SRC_URI="mirror://sourceforge/${PN}/EasyMock/${PV}/${P}.zip"
LICENSE="|| ( MIT Apache-2.0 )"
SLOT="3.2"
KEYWORDS="~amd64 ~x86"
IUSE=""
COMMON_DEPEND="
dev-java/junit:4
dev-java/objenesis:0
dev-java/cglib:2.2
"
DEPEND=">=virtual/jdk-1.5
app-arch/unzip
${COMMON_DEPEND}"
RDEPEND=">=virtual/jre-1.5
${COMMON_DEPEND}"
S="${WORKDIR}/${P}"
JAVA_GENTOO_CLASSPATH="junit-4,objenesis,cglib-2.2"
JAVA_SRC_DIR="src"
src_unpack() {
default
cd "${S}" || die
unzip ${P}-sources.jar -d src/ || die
if use examples; then
unzip ${P}-samples.jar -d examples/ || die
fi
}
java_prepare() {
epatch "${FILESDIR}"/${PV}-no-android.patch
rm src/org/easymock/internal/AndroidClassProxyFactory.java || die
}
src_install() {
java-pkg-simple_src_install
use examples && java-pkg_doexamples examples
}