pkgsrc-wip/apache-commons-lang/Makefile
Kamel Ibn Aziz Derouiche 46f48a99fc Import apache-commons-lang-2.5 as wip/apache-commons-lang.
The Lang Component contains a set of Java classes that provide helper methods
for standard Java classes, especially those found in the java.lang package
in the Sun JDK. The following classes are included:

 * StringUtils - Helper for java.lang.String.
 * CharSetUtils - Methods for dealing with CharSets, which are sets of
   characters such as [a-z] and [abcdez].
 * RandomStringUtils - Helper for creating randomised Strings.
 * NumberUtils - Helper for java.lang.Number and its subclasses.
 * NumberRange - A range of numbers with an upper and lower bound.
 * ObjectUtils - Helper for java.lang.Object.
 * SerializationUtils - Helper for serializing Objects.
 * SystemUtils - Utility class defining the Java system properties.
 * NestedException package - A sub-package for the creation of nested
   exceptions.
 * Enum package - A sub-package for the creation of enumerated types.
 * Builder package - A sub-package for the creation of equals, hashCode,
   compareTo and toString methods.
2010-09-08 23:46:13 +00:00

31 lines
744 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2010/09/08 23:46:13 jihbed Exp $
#
DISTNAME= commons-lang-2.5-bin
PKGNAME= apache-${DISTNAME:S/-bin//}
CATEGORIES= devel java
MASTER_SITES= http://apache.inetbridge.net//commons/lang/binaries/
MAINTAINER= kamel.derouiche@gmail.com
HOMEPAGE= http://commons.apache.org/lang/
COMMENT= Extension of the java.lang package
LICENSE= apache-2.0
PKG_DESTDIR_SUPPORT= user-destdir
WRKSRC= ${WRKDIR}/commons-lang-2.5
NO_BUILD= yes
USE_LANGUAGES= # none
USE_JAVA= yes
PKG_JVMS_ACCEPTED= sun-jdk6 sun-jdk15 sun-jdk14
INSTALLATION_DIRS= lib/java
do-install:
${INSTALL_DATA} ${WRKSRC}/commons-lang-2.5.jar \
${DESTDIR}${PREFIX}/lib/java/commons-lang.jar
.include "../../mk/java-vm.mk"
.include "../../mk/bsd.pkg.mk"