diff options
author | kevlo <kevlo@FreeBSD.org> | 2001-06-25 04:00:58 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2001-06-25 04:00:58 +0000 |
commit | 534c42a653c3619ce8765c1bb6ee89c7f63011ca (patch) | |
tree | bc2decd6513b03d3d1b5d52e56bc4de851604244 /java | |
parent | 66b48ecf95794a0eea650ba9f8668c89b3a3f61e (diff) | |
download | FreeBSD-ports-534c42a653c3619ce8765c1bb6ee89c7f63011ca.zip FreeBSD-ports-534c42a653c3619ce8765c1bb6ee89c7f63011ca.tar.gz |
Initial import of jlint-2.1
Jlint is the Java program analyzer and checker.
PR: 28377
Submitted by: Ernst de Haan <ernst@jollem.com>
Diffstat (limited to 'java')
-rw-r--r-- | java/Makefile | 1 | ||||
-rw-r--r-- | java/jlint/Makefile | 30 | ||||
-rw-r--r-- | java/jlint/distinfo | 1 | ||||
-rw-r--r-- | java/jlint/pkg-comment | 1 | ||||
-rw-r--r-- | java/jlint/pkg-descr | 5 | ||||
-rw-r--r-- | java/jlint/pkg-plist | 2 |
6 files changed, 40 insertions, 0 deletions
diff --git a/java/Makefile b/java/Makefile index 95d4718..91e5b8f 100644 --- a/java/Makefile +++ b/java/Makefile @@ -26,6 +26,7 @@ SUBDIR += jfc SUBDIR += jikes SUBDIR += jlex + SUBDIR += jlint SUBDIR += jre SUBDIR += jsdk SUBDIR += junit diff --git a/java/jlint/Makefile b/java/jlint/Makefile new file mode 100644 index 0000000..655670e --- /dev/null +++ b/java/jlint/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: jlint +# Date created: June 2, 2001 +# Whom: Ernst de Haan <ernst@jollem.com> +# +# $FreeBSD$ +# + +PORTNAME= jlint +PORTVERSION= 2.1 +CATEGORIES= java +MASTER_SITES= http://artho.com/jlint/ \ + http://jollem.com/~ernst/ +DISTNAME= ${PORTNAME} + +MAINTAINER= ernst@jollem.com + +PLIST_SUB+= T=${TARGET_DIR:S/^${PREFIX}\///} +TARGET_DIR?= ${PREFIX}/bin + +WRKSRC= ${WRKDIR}/${PORTNAME} + +.include <bsd.port.pre.mk> + +do-install: + ${MKDIR} ${TARGET_DIR} + ${CP} ${WRKSRC}/jlint ${TARGET_DIR} + ${CP} ${WRKSRC}/antic ${TARGET_DIR} + ${CHMOD} 755 ${TARGET_DIR}/jlint ${TARGET_DIR}/antic + +.include <bsd.port.post.mk> diff --git a/java/jlint/distinfo b/java/jlint/distinfo new file mode 100644 index 0000000..7724c6c --- /dev/null +++ b/java/jlint/distinfo @@ -0,0 +1 @@ +MD5 (jlint.tar.gz) = 5067a0385d4cc78745c344e0be3f6024 diff --git a/java/jlint/pkg-comment b/java/jlint/pkg-comment new file mode 100644 index 0000000..691c9d3 --- /dev/null +++ b/java/jlint/pkg-comment @@ -0,0 +1 @@ +Java program analyzer and checker diff --git a/java/jlint/pkg-descr b/java/jlint/pkg-descr new file mode 100644 index 0000000..f6933d8 --- /dev/null +++ b/java/jlint/pkg-descr @@ -0,0 +1,5 @@ +Jlint will check your Java code and find bugs, inconsistencies +and synchronization problems by doing data flow analysis and +building the lock graph. + +WWW: http://artho.com/jlint/ diff --git a/java/jlint/pkg-plist b/java/jlint/pkg-plist new file mode 100644 index 0000000..467963f --- /dev/null +++ b/java/jlint/pkg-plist @@ -0,0 +1,2 @@ +%%T%%/jlint +%%T%%/antic |