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/plexus-classworlds/plexus-classworlds-2.2.3.eb...

42 lines
859 B

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
JAVA_PKG_IUSE="doc source test"
WANT_ANT_TASKS="ant-junit4"
inherit java-pkg-2 java-ant-2
DESCRIPTION="The class loader framework of the Plexus project"
HOMEPAGE="https://github.com/codehaus"
SRC_URI="https://dev.gentoo.org/~ercpe/distfiles/${CATEGORY}/${PN}/${P}.tar.bz2"
LICENSE="codehaus-classworlds"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=virtual/jdk-1.8"
RDEPEND=">=virtual/jre-1.8"
JAVA_ANT_REWRITE_CLASSPATH="true"
src_prepare() {
cp "${FILESDIR}"/${PV}-build.xml "${S}"/build.xml || die
default
}
src_install() {
java-pkg_newjar "${S}/target/${P}.jar" "${PN}.jar"
use source && java-pkg_dosrc "${S}"/src/main/java/*
use doc && java-pkg_dojavadoc "${S}"/target/site/apidocs
}
src_test() {
java-pkg-2_src_test
}