diff options
author | thierry <thierry@FreeBSD.org> | 2005-06-13 03:16:37 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2005-06-13 03:16:37 +0800 |
commit | 682acad851583da40170fbe7eb694666450f82d1 (patch) | |
tree | 44353fbb1398ecd49a8b552a1c7b69e81ff35958 /devel | |
parent | fe1d7598f9b91f23779f1eb2d72bd213d3d98b01 (diff) | |
download | freebsd-ports-graphics-682acad851583da40170fbe7eb694666450f82d1.tar.gz freebsd-ports-graphics-682acad851583da40170fbe7eb694666450f82d1.tar.zst freebsd-ports-graphics-682acad851583da40170fbe7eb694666450f82d1.zip |
Add jcmdline 1.0.3, a Java command line processor.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/jcmdline/Makefile | 37 | ||||
-rw-r--r-- | devel/jcmdline/distinfo | 2 | ||||
-rw-r--r-- | devel/jcmdline/pkg-descr | 9 |
4 files changed, 49 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 694a8c0293f..7cdbb9f5341 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -384,6 +384,7 @@ SUBDIR += jam SUBDIR += java-util-concurrent SUBDIR += jclassinfo + SUBDIR += jcmdline SUBDIR += jep SUBDIR += jrtplib SUBDIR += jsap diff --git a/devel/jcmdline/Makefile b/devel/jcmdline/Makefile new file mode 100644 index 00000000000..7da085a754e --- /dev/null +++ b/devel/jcmdline/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: jcmdline +# Date created: 22 May 2005 +# Whom: Thierry Thomas <thierry@pompo.net> +# +# $FreeBSD$ +# + +PORTNAME= jcmdline +PORTVERSION= 1.0.3 +CATEGORIES= devel java +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= thierry@FreeBSD.org +COMMENT= A Java command line processor + +USE_JAVA= yes +JAVA_VERSION= 1.4+ +NO_BUILD= yes + +JARFILE= ${PORTNAME}.jar + +PLIST_FILES= %%JAVAJARDIR%%/${JARFILE} +DOCFILES= CHANGES CREDITS README +PORTDOCS= * + +do-install: + ${INSTALL_DATA} ${JARFILE:S|.jar|-${PORTVERSION}.jar|:S|^|${WRKSRC}/|} \ + ${JAVAJARDIR}/${JARFILE} +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + @${INSTALL_DATA} ${DOCFILES:S|^|${WRKSRC}/|} ${DOCSDIR} + @${CP} -R ${WRKSRC}/doc/* ${DOCSDIR} + @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." +.endif + +.include <bsd.port.mk> diff --git a/devel/jcmdline/distinfo b/devel/jcmdline/distinfo new file mode 100644 index 00000000000..a16533d3e28 --- /dev/null +++ b/devel/jcmdline/distinfo @@ -0,0 +1,2 @@ +MD5 (jcmdline-1.0.3.tar.gz) = d75af2e06c8dc1643bd1ad745001faba +SIZE (jcmdline-1.0.3.tar.gz) = 263024 diff --git a/devel/jcmdline/pkg-descr b/devel/jcmdline/pkg-descr new file mode 100644 index 00000000000..4b578fbd89f --- /dev/null +++ b/devel/jcmdline/pkg-descr @@ -0,0 +1,9 @@ +The jcmdline package is a Java package with the following goals: + + * Facilitate parsing/handling of command line parameters. + * Add consistency to command line parameter parsing and command usage display + through all executables of a Java application. + * Automatically generate a command usage based upon defined command line + parameters. + +WWW: http://jcmdline.sourceforge.net/ |