diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2018-05-26 08:13:28 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2018-05-27 18:30:27 +0200 |
commit | d3285a05976493a68d7e228f8f6e5e5c54104678 (patch) | |
tree | 2d919fa61d326762454a600c3839dea73c1b1b58 /dev-java/commons-codec/commons-codec-1.11.ebuild | |
parent | dev-java/cssparser: clean up old versions. (diff) | |
download | gentoo-d3285a05976493a68d7e228f8f6e5e5c54104678.tar.gz gentoo-d3285a05976493a68d7e228f8f6e5e5c54104678.tar.bz2 gentoo-d3285a05976493a68d7e228f8f6e5e5c54104678.zip |
dev-java/commons-codec: version bump.
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'dev-java/commons-codec/commons-codec-1.11.ebuild')
-rw-r--r-- | dev-java/commons-codec/commons-codec-1.11.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/dev-java/commons-codec/commons-codec-1.11.ebuild b/dev-java/commons-codec/commons-codec-1.11.ebuild new file mode 100644 index 000000000000..7abed459fb4e --- /dev/null +++ b/dev-java/commons-codec/commons-codec-1.11.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="Implementations of common encoders and decoders in Java" +HOMEPAGE="https://commons.apache.org/codec" +SRC_URI="mirror://apache/commons/codec/source/${P}-src.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="test" + +RDEPEND=" + >=virtual/jre-1.6" + +DEPEND=" + >=virtual/jdk-1.6 + test? ( + dev-java/ant-junit:0 + dev-java/junit:4 + )" + +S="${WORKDIR}/${P}-src" + +JAVA_ANT_ENCODING="ISO-8859-1" +EANT_TEST_GENTOO_CLASSPATH="junit-4" + +JAVA_ANT_REWRITE_CLASSPATH="yes" + +RESTRICT="test" + +DOCS=( RELEASE-NOTES.txt NOTICE.txt ) + +src_prepare() { + cp "${FILESDIR}/${P}-build.xml" "${S}/build.xml" || die + default +} + +src_test() { + java-pkg-2_src_test +} + +src_install() { + java-pkg_newjar "target/${P}.jar" + + use doc && java-pkg_dojavadoc target/site/apidocs + use source && java-pkg_dosrc src/main/java/* +} |