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/jmock/jmock-2.5.1.ebuild

46 lines
943 B

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jmock/jmock-2.5.1.ebuild,v 1.3 2015/04/02 18:13:09 mr_bones_ Exp $
EAPI=5
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Library for testing Java code using mock objects"
SRC_URI="http://${PN}.codehaus.org/dist/${P}-jars.zip"
HOMEPAGE="http://jmock.codehaus.org"
LICENSE="BSD"
SLOT="2"
KEYWORDS="~amd64 ~x86"
IUSE=""
CDEPEND="dev-java/hamcrest-core:0
dev-java/hamcrest-library:0"
RDEPEND="virtual/jre:1.6
${CDEPEND}"
DEPEND="virtual/jdk:1.6
${CDEPEND}
app-arch/unzip"
JAVA_GENTOO_CLASSPATH="hamcrest-core,hamcrest-library"
S="${WORKDIR}/${P}"
src_unpack() {
unpack ${A}
cd "${S}" || die
unzip ${P}.jar -d src || die
rm *.jar || die
}
src_prepare() {
find -name "*.class" -delete || die
epatch "${FILESDIR}/${PV}-invokeAll-invokeAny.patch"
}