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/commons-lang/commons-lang-3.11-r1.ebuild

50 lines
995 B

# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
JAVA_PKG_IUSE="doc source test"
MAVEN_ID="org.apache.commons:commons-lang3:3.11"
inherit java-pkg-2 java-pkg-simple
MY_P="${PN}3-${PV}"
DESCRIPTION="Commons components to manipulate core java classes"
HOMEPAGE="https://commons.apache.org/lang"
SRC_URI="mirror://apache/commons/lang/source/${MY_P}-src.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="3.6"
KEYWORDS="amd64 arm64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
CDEPEND="
dev-java/easymock:3.2
dev-java/commons-io:1"
DEPEND="
${CDEPEND}
>=virtual/jdk-1.8"
RDEPEND="
${CDEPEND}
>=virtual/jre-1.8"
S="${WORKDIR}/${MY_P}-src"
JAVA_ANT_ENCODING="ISO-8859-1"
JAVA_GENTOO_CLASSPATH="
easymock-3.2
commons-io-1"
DOCS=( CONTRIBUTING.md NOTICE.txt RELEASE-NOTES.txt LICENSE.txt README.md )
src_prepare() {
default
rm -rv src/test || die
}
src_install() {
einstalldocs
java-pkg-simple_src_install
}