mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 15:09:04 +02:00
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/39233/commits/62bcb33317aae7acc15ea9b874ba3de3875e319d Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
50 lines
927 B
Bash
50 lines
927 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
JAVA_PKG_IUSE="doc source"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="Library for testing Java code using mock objects"
|
|
HOMEPAGE="http://jmock.org/"
|
|
SRC_URI="http://jmock.org/downloads/${P}-jars.zip"
|
|
S="${WORKDIR}/${P}"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="1.0"
|
|
KEYWORDS="amd64 arm64 ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
|
|
|
|
CP_DEPEND="dev-java/junit:0"
|
|
|
|
DEPEND="
|
|
${CP_DEPEND}
|
|
app-arch/unzip
|
|
>=virtual/jdk-1.8:*
|
|
"
|
|
|
|
RDEPEND="
|
|
${CP_DEPEND}
|
|
>=virtual/jre-1.8:*
|
|
"
|
|
|
|
JAVA_SRC_DIR="src"
|
|
|
|
PATCHES=(
|
|
# This patch isn't changing the behaviour if jmock per se.
|
|
# Only the formatting is altered.
|
|
"${FILESDIR}"/${P}-AbstractMo.patch
|
|
)
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
unzip "${P}"/jmock-core-"${PV}".jar -d src || die
|
|
mv src "${P}" || die
|
|
}
|
|
|
|
src_prepare() {
|
|
default #780585
|
|
java-pkg-2_src_prepare
|
|
java-pkg_clean
|
|
}
|