mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-java/emma: EAPI 8, min java 1.8:*
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/23941 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
committed by
Miroslav Šulc
parent
eb9234c26f
commit
304088427c
52
dev-java/emma/emma-2.0.5312-r4.ebuild
Normal file
52
dev-java/emma/emma-2.0.5312-r4.ebuild
Normal file
@@ -0,0 +1,52 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
JAVA_PKG_IUSE="source"
|
||||
|
||||
inherit java-pkg-2 java-ant-2
|
||||
|
||||
DESCRIPTION="Free Java code coverage tool"
|
||||
HOMEPAGE="http://emma.sourceforge.net/"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
|
||||
|
||||
LICENSE="CPL-1.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
|
||||
|
||||
IUSE="+launcher"
|
||||
|
||||
CDEPEND="
|
||||
dev-java/ant-core
|
||||
launcher? ( !sci-biology/emboss )"
|
||||
|
||||
RDEPEND="
|
||||
${CDEPEND}
|
||||
>=virtual/jre-1.8:*"
|
||||
|
||||
DEPEND="
|
||||
${CDEPEND}
|
||||
>=virtual/jdk-1.8:*"
|
||||
|
||||
BDEPEND="app-arch/unzip"
|
||||
|
||||
EANT_BUILD_TARGET="build"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eapply "${FILESDIR}/${P}-java15api.patch"
|
||||
# bcp mangling unneccessary for 1.4+ and breaks with IBM 1.6 - bug #220463
|
||||
sed -e '/bootclasspathref/d' -e '/extdirs/d' -i build.xml || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
java-pkg_dojar "dist/${PN}.jar"
|
||||
java-pkg_dojar "dist/${PN}_ant.jar"
|
||||
java-pkg_register-ant-task
|
||||
|
||||
use launcher && java-pkg_dolauncher ${PN} --main emmarun
|
||||
|
||||
# One of these does not have java sources
|
||||
use source && java-pkg_dosrc */*/com 2> /dev/null
|
||||
}
|
||||
Reference in New Issue
Block a user