diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2001-06-25 04:00:58 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2001-06-25 04:00:58 +0000 |
commit | 8d305074715b7437d0d06684f2c02ad176e5b5a6 (patch) | |
tree | 10b36249595d0e3ec8768ce4ed49615599fe2aa8 /java | |
parent | - Update to version 1.4.1 (diff) |
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 95d47189c07f..91e5b8ff9dc8 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 000000000000..655670e226bd --- /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 000000000000..7724c6ca4f34 --- /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 000000000000..691c9d339c12 --- /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 000000000000..f6933d809699 --- /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 000000000000..467963f76e8c --- /dev/null +++ b/java/jlint/pkg-plist @@ -0,0 +1,2 @@ +%%T%%/jlint +%%T%%/antic |