diff options
Diffstat (limited to 'math/apache-commons-math/Makefile')
-rw-r--r-- | math/apache-commons-math/Makefile | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/math/apache-commons-math/Makefile b/math/apache-commons-math/Makefile new file mode 100644 index 000000000000..8093a59cc4a1 --- /dev/null +++ b/math/apache-commons-math/Makefile @@ -0,0 +1,58 @@ +# Created by: Muhammad Moinur Rahmanh <5u623l20@gmail.com> +# $FreeBSD$ + +PORTNAME= commons-math +PORTVERSION= 3.6.1 +CATEGORIES= math java +MASTER_SITES= APACHE_COMMONS_SOURCE \ + http://repo1.maven.org/maven2/junit/junit/4.8.2/:source2 +PKGNAMEPREFIX= apache- +DISTNAME= ${PORTNAME}3-${PORTVERSION}-src +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ + junit-4.8.2.jar:source2 +EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} + +MAINTAINER= bofh@FreeBSD.org +COMMENT= Java library of self-contained mathematics and statistics components + +LICENSE= APACHE20 + +BROKEN_armv6= fails to compile: build.xml: Compile failed; see the compiler error output for details +BROKEN_armv7= fails to compile: PowellOptimizer.java:301: error: Illegal static declaration in inner class PowellOptimizer.LineSearch + +USE_ANT= yes +USE_JAVA= yes +USE_LOCALE= en_US.ISO8859-1 + +ALL_TARGET= jar +MAKE_ARGS= -Dlibdir=${WRKDIR} -Dnoget=true + +JARFILE= ${PORTNAME:S,3,,}-3.6.jar +DESTJARFILE= ${PORTNAME}.jar +PLIST_FILES+= ${JAVAJARDIR}/${DESTJARFILE} + +OPTIONS_DEFINE= DOCS + +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MDOCS} +ALL_TARGET+= javadoc +OTHERDOCS= LICENSE.txt NOTICE.txt +PORTDOCS= apidocs ${OTHERDOCS} +.endif + +post-extract: + ${MKDIR} ${WRKSRC}/lib + ${CP} ${DISTDIR}/junit-4.8.2.jar ${WRKSRC}/lib/ + +do-install: + ${MKDIR} ${STAGEDIR}${JAVAJARDIR} + ${INSTALL_DATA} ${WRKSRC}/target/${JARFILE} ${STAGEDIR}${JAVAJARDIR}/${DESTJARFILE} + +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${STAGEDIR}${DOCSDIR}/apidocs + (cd ${WRKSRC}/target/apidocs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/apidocs/${SDIR}) + ${INSTALL_DATA} ${WRKSRC}/*.txt ${STAGEDIR}${DOCSDIR}/ +.endif + +.include <bsd.port.mk> |