diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2015-08-21 09:00:52 +0000 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2015-08-21 10:42:14 +0000 |
commit | 6a9e3047851903a1757ea5f885c59666284248e2 (patch) | |
tree | 0e5b544360adf69a75ea943f06a850fc83dddc1f /dev-java/commons-collections | |
parent | dev-java/ballontip: Stable for amd64+x86. (diff) | |
download | gentoo-6a9e3047851903a1757ea5f885c59666284248e2.tar.gz gentoo-6a9e3047851903a1757ea5f885c59666284248e2.tar.bz2 gentoo-6a9e3047851903a1757ea5f885c59666284248e2.zip |
dev-java/commons-collections: Remove old.
Package-Manager: portage-2.2.18
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-java/commons-collections')
-rw-r--r-- | dev-java/commons-collections/commons-collections-3.2.1.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/dev-java/commons-collections/commons-collections-3.2.1.ebuild b/dev-java/commons-collections/commons-collections-3.2.1.ebuild deleted file mode 100644 index 6e9154277fe5..000000000000 --- a/dev-java/commons-collections/commons-collections-3.2.1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-ant-2 eutils - -DESCRIPTION="Jakarta-Commons Collections Component" -HOMEPAGE="http://commons.apache.org/collections/" -SRC_URI="mirror://apache/${PN/-//}/source/${P}-src.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" -IUSE="test-framework" - -COMMON_DEP="test-framework? ( =dev-java/junit-3.8* )" -DEPEND=">=virtual/jdk-1.4 - test? ( dev-java/ant-junit ) - ${COMMON_DEP}" -RDEPEND=">=virtual/jre-1.4 - ${COMMON_DEP}" - -S="${WORKDIR}/${P}-src" - -src_compile() { - local antflags - if use test-framework; then - antflags="tf.jar -Djunit.jar=$(java-pkg_getjars junit)" - #no support for installing two sets of javadocs via dojavadoc atm - #use doc && antflags="${antflags} tf.javadoc" - fi - eant jar $(use_doc) ${antflags} -} - -src_test() { - if [[ "${ARCH}" = "ppc" ]]; then - einfo "Tests are disabled on ppc" - else - ANT_TASKS="ant-junit" eant testjar -Djunit.jar="$(java-pkg_getjars junit)" - fi -} - -src_install() { - java-pkg_newjar build/${P}.jar ${PN}.jar - use test-framework && \ - java-pkg_newjar build/${PN}-testframework-${PV}.jar \ - ${PN}-testframework.jar - - dodoc README.txt || die - java-pkg_dohtml *.html || die - if use doc; then - java-pkg_dojavadoc build/docs/apidocs - #use test-framework && java-pkg_dojavadoc build/docs/testframework - fi - use source && java-pkg_dosrc src/java/* -} |