mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Add jcmdline 1.0.3, a Java command line processor.
This commit is contained in:
parent
cf1691877a
commit
30ff38e70f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=137341
4 changed files with 49 additions and 0 deletions
|
@ -384,6 +384,7 @@
|
|||
SUBDIR += jam
|
||||
SUBDIR += java-util-concurrent
|
||||
SUBDIR += jclassinfo
|
||||
SUBDIR += jcmdline
|
||||
SUBDIR += jep
|
||||
SUBDIR += jrtplib
|
||||
SUBDIR += jsap
|
||||
|
|
37
devel/jcmdline/Makefile
Normal file
37
devel/jcmdline/Makefile
Normal file
|
@ -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>
|
2
devel/jcmdline/distinfo
Normal file
2
devel/jcmdline/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (jcmdline-1.0.3.tar.gz) = d75af2e06c8dc1643bd1ad745001faba
|
||||
SIZE (jcmdline-1.0.3.tar.gz) = 263024
|
9
devel/jcmdline/pkg-descr
Normal file
9
devel/jcmdline/pkg-descr
Normal file
|
@ -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/
|
Loading…
Add table
Reference in a new issue