diff options
Diffstat (limited to 'dev-java/commons-collections/commons-collections-2.1.ebuild')
-rw-r--r-- | dev-java/commons-collections/commons-collections-2.1.ebuild | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-java/commons-collections/commons-collections-2.1.ebuild b/dev-java/commons-collections/commons-collections-2.1.ebuild deleted file mode 100644 index 6f4a00f53631..000000000000 --- a/dev-java/commons-collections/commons-collections-2.1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-collections/commons-collections-2.1.ebuild,v 1.1 2002/11/01 18:19:07 karltk Exp $ - -S=${WORKDIR}/commons-collections-${PV}-src -DESCRIPTION="Jakarta-Commons Collections Component" -HOMEPAGE="http://jakarta.apache.org/commons/collections.html" -SRC_URI="http://jakarta.apache.org/builds/jakarta-commons/release/commons-collections/v${PV}/commons-collections-${PV}-src.tar.gz" -DEPEND=">=virtual/jdk-1.3 - >=ant-1.4 - junit? ( >=junit-3.7 )" -RDEPEND=">=virtual/jdk-1.3" -LICENSE="Apache-1.1" -SLOT="0" -KEYWORDS="~x86 ~ppc ~sparc ~sparc64 ~alpha" -IUSE="" - -src_compile() { - - if [ -n "`use junit`" ] ; then - echo "junit.jar=`java-config --classpath=junit`" > build.properties - ant || die "Testing Classes Failed" - fi - - ant dist-jar || die "Compilation Failed" - ant doc || die "Unable to create documents" -} - -src_install () { - dojar dist/commons-collections*.jar || die "Unable to Install" - dodir /usr/share/doc/${P} - dohtml dist/*.html - dohtml -r dist/docs/* -} - -pkg_postinst() { - einfo "************ Documentation can be found at *************\n - WEB: http://jakarta.apache.org/commons/collections.html\n - LOCAL: /usr/share/doc/commons-collections-${PV}\n - ********************************************************" -} |