mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
New port: Jakarta Commons Collections.
See: http://jakarta.apache.org/commons/collections.html
This commit is contained in:
parent
b026e415da
commit
11a89ad5c6
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=68280
6 changed files with 128 additions and 0 deletions
|
@ -16,6 +16,7 @@
|
|||
SUBDIR += jad
|
||||
SUBDIR += jaf
|
||||
SUBDIR += jakarta-bcel
|
||||
SUBDIR += jakarta-commons-collections
|
||||
SUBDIR += jakarta-commons-lang
|
||||
SUBDIR += jakarta-log4j
|
||||
SUBDIR += jakarta-oro
|
||||
|
|
47
java/jakarta-commons-collections/Makefile
Normal file
47
java/jakarta-commons-collections/Makefile
Normal file
|
@ -0,0 +1,47 @@
|
|||
# New ports collection makefile for: Jakarta Commons Collections
|
||||
# Date created: October 18, 2002
|
||||
# Whom: Ernst de Haan <znerd@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= commons-collections
|
||||
PORTVERSION= 2.0
|
||||
CATEGORIES= java
|
||||
MASTER_SITES= http://jakarta.apache.org/builds/jakarta-commons/release/${PORTNAME}/v${PORTVERSION}/
|
||||
PKGNAMEPREFIX= jakarta-
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
||||
|
||||
MAINTAINER= znerd@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= ${ANT}:${PORTSDIR}/devel/jakarta-ant
|
||||
|
||||
USE_JAVA= 1.2+
|
||||
|
||||
PLIST_SUB+= T=${TARGET_DIR:S/^${PREFIX}\///}
|
||||
ANT?= ${LOCALBASE}/bin/ant
|
||||
.if defined(NOPORTDOCS)
|
||||
ANT_TARGET= dist-jar
|
||||
.else
|
||||
ANT_TARGET= dist-jar doc-javadoc
|
||||
.endif
|
||||
JAVASHAREDIR= ${PREFIX}/share/java
|
||||
JARDIR= ${JAVASHAREDIR}/classes
|
||||
JARFILE= ${PORTNAME}.jar
|
||||
|
||||
do-build:
|
||||
@cd ${WRKSRC} && ${ANT} ${ANT_TARGET}
|
||||
|
||||
do-install:
|
||||
@${ECHO} -n ">> Installing JAR as ${JARDIR}/${JARFILE}..."
|
||||
@${CP} ${WRKSRC}/dist/${JARFILE} ${JARDIR}/
|
||||
@${ECHO} " [ DONE ]"
|
||||
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${ECHO} -n ">> Installing documentation in ${DOCSDIR}..."
|
||||
${MKDIR} ${DOCSDIR}
|
||||
${CP} -r ${WRKSRC}/dist/docs/api/* ${DOCSDIR}
|
||||
@${ECHO} " [ DONE ]"
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
java/jakarta-commons-collections/distinfo
Normal file
1
java/jakarta-commons-collections/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (commons-collections-2.0-src.tar.gz) = c7cc95130838336ec5ffe14ea5fcb661
|
1
java/jakarta-commons-collections/pkg-comment
Normal file
1
java/jakarta-commons-collections/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Classes that extend/augment the Java Collections Framework
|
14
java/jakarta-commons-collections/pkg-descr
Normal file
14
java/jakarta-commons-collections/pkg-descr
Normal file
|
@ -0,0 +1,14 @@
|
|||
a suite of classes that extend or augment the Java Collections
|
||||
Framework.
|
||||
|
||||
There are certain holes left unfilled by Sun's implementations,
|
||||
and the Jakarta-Commons Collections Component strives to fulfill
|
||||
them. Among the features of this package are:
|
||||
|
||||
Special-purpose implementations of Lists and Maps for fast access
|
||||
Adapter classes from Java1-style containers (arrays,
|
||||
enumerations) to Java 2-style collections.
|
||||
Methods to test or create typical set-theory properties of
|
||||
collections such as union, intersection, and closure.
|
||||
|
||||
WWW: http://jakarta.apache.org/commons/collections.html
|
64
java/jakarta-commons-collections/pkg-plist
Normal file
64
java/jakarta-commons-collections/pkg-plist
Normal file
|
@ -0,0 +1,64 @@
|
|||
share/doc/commons-collections/org/apache/commons/collections/comparators/package-summary.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/comparators/package-frame.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/comparators/ComparableComparator.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/comparators/ComparatorChain.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/comparators/ReverseComparator.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/package-frame.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/Bag.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/Closure.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/MultiMap.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/Predicate.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/PriorityQueue.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/SortedBag.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/Transformer.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/AbstractBag.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/ArrayIterator.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/ArrayStack.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/BeanMap.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/BeanMap.MyMapEntry.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/BinaryHeap.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/CollectionUtils.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/CursorableLinkedList.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/DefaultMapBag.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/CursorableLinkedList.Cursor.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/DefaultMapEntry.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/DoubleOrderedMap.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/EnumerationIterator.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/ExtendedProperties.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/FastArrayList.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/FastHashMap.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/FastTreeMap.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/FilterIterator.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/FilterListIterator.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/HashBag.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/IteratorEnumeration.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/LRUMap.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/MapUtils.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/MultiHashMap.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/ProxyIterator.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/ProxyListIterator.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/ProxyMap.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/SequencedHashMap.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/SingletonIterator.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/SoftRefHashMap.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/StringStack.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/SynchronizedPriorityQueue.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/TransformIterator.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/package-summary.html
|
||||
share/doc/commons-collections/org/apache/commons/collections/TreeBag.html
|
||||
share/doc/commons-collections/serialized-form.html
|
||||
share/doc/commons-collections/packages.html
|
||||
share/doc/commons-collections/package-list
|
||||
share/doc/commons-collections/overview-summary.html
|
||||
share/doc/commons-collections/overview-frame.html
|
||||
share/doc/commons-collections/index.html
|
||||
share/doc/commons-collections/index-all.html
|
||||
share/doc/commons-collections/stylesheet.css
|
||||
share/doc/commons-collections/allclasses-frame.html
|
||||
share/java/classes/commons-collections.jar
|
||||
@dirrm share/doc/commons-collections/org/apache/commons/collections/comparators
|
||||
@dirrm share/doc/commons-collections/org/apache/commons/collections
|
||||
@dirrm share/doc/commons-collections/org/apache/commons
|
||||
@dirrm share/doc/commons-collections/org/apache
|
||||
@dirrm share/doc/commons-collections/org
|
||||
@dirrm share/doc/commons-collections
|
Loading…
Add table
Reference in a new issue