diff options
author | Pedro F. Giffuni <pfg@FreeBSD.org> | 2019-10-06 19:08:14 +0000 |
---|---|---|
committer | Pedro F. Giffuni <pfg@FreeBSD.org> | 2019-10-06 19:08:14 +0000 |
commit | c937a4ccc9f8c084344ae2b95fda9e50dfe7ab03 (patch) | |
tree | d1f15965fd21b7db5e3b21c1d8dc8442e6e2f50e /java/apache-commons-cli | |
parent | New port: math/darknet: Open source neural networks in C (diff) |
rename most cases of jakarta- to apache-
The Apache Softare Foundation used to maintain an umbrella project named
Jakarta but it was retired on 2011. This name now conflicts with the new
name for Java EE under the Eclipse Foundation.
Rename most of the packages to be more consistent. Some other packages remain
but they will require intervention by their corresponding maintainers.
Approved by: thierry (mentor), makc
Differential Revision: https://reviews.freebsd.org/D21902
Notes
Notes:
svn path=/head/; revision=513899
Diffstat (limited to 'java/apache-commons-cli')
-rw-r--r-- | java/apache-commons-cli/Makefile | 39 | ||||
-rw-r--r-- | java/apache-commons-cli/distinfo | 3 | ||||
-rw-r--r-- | java/apache-commons-cli/pkg-descr | 4 |
3 files changed, 46 insertions, 0 deletions
diff --git a/java/apache-commons-cli/Makefile b/java/apache-commons-cli/Makefile new file mode 100644 index 000000000000..3c8f8fef617b --- /dev/null +++ b/java/apache-commons-cli/Makefile @@ -0,0 +1,39 @@ +# Created by: Ernst de Haan <znerd@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= commons-cli +PORTVERSION= 1.4 +CATEGORIES= java devel +MASTER_SITES= APACHE_COMMONS_BINARIES +PKGNAMEPREFIX= apache- +DISTNAME= ${PORTNAME}-${PORTVERSION}-bin + +MAINTAINER= ports@FreeBSD.org +COMMENT= Java library for command line arguments and options + +LICENSE= APACHE20 + +USE_JAVA= yes +JAVA_VERSION= 1.6+ +NO_BUILD= yes + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +JARFILE= ${PORTNAME}-${PORTVERSION}.jar +DESTJARFILE= ${PORTNAME}.jar +PLIST_FILES= %%JAVAJARDIR%%/${DESTJARFILE} +PORTDOCS= * + +OPTIONS_DEFINE= DOCS + +do-install: + ${INSTALL_DATA} ${WRKSRC}/${JARFILE} \ + ${STAGEDIR}${JAVAJARDIR}/${DESTJARFILE} + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${COPYTREE_SHARE} apidocs ${STAGEDIR}${DOCSDIR}) + (cd ${WRKSRC} && ${INSTALL_DATA} LICENSE.txt NOTICE.txt \ + RELEASE-NOTES.txt ${STAGEDIR}${DOCSDIR}) + +.include <bsd.port.mk> diff --git a/java/apache-commons-cli/distinfo b/java/apache-commons-cli/distinfo new file mode 100644 index 000000000000..d17791bd43f0 --- /dev/null +++ b/java/apache-commons-cli/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1489478273 +SHA256 (commons-cli-1.4-bin.tar.gz) = e9f134cd94c13a77b87648871140104338a3b90320658c1860b73f4d5732a793 +SIZE (commons-cli-1.4-bin.tar.gz) = 505547 diff --git a/java/apache-commons-cli/pkg-descr b/java/apache-commons-cli/pkg-descr new file mode 100644 index 000000000000..f4bf86fafc24 --- /dev/null +++ b/java/apache-commons-cli/pkg-descr @@ -0,0 +1,4 @@ +The Apache Commons CLI library provides a simple and easy to use +API for working with the command line arguments and options. + +WWW: http://commons.apache.org/proper/commons-cli/ |