diff options
author | miwi <miwi@FreeBSD.org> | 2007-12-21 19:16:49 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-12-21 19:16:49 +0800 |
commit | e101018bb13ddc7fa5f86c9f4597204ecf572036 (patch) | |
tree | c50506dc221ddcab9c1b85fbbb2496b017d303d5 /java | |
parent | 5594893242f8db494c500803b408c8511e4bd934 (diff) | |
download | freebsd-ports-gnome-e101018bb13ddc7fa5f86c9f4597204ecf572036.tar.gz freebsd-ports-gnome-e101018bb13ddc7fa5f86c9f4597204ecf572036.tar.zst freebsd-ports-gnome-e101018bb13ddc7fa5f86c9f4597204ecf572036.zip |
Commonclipse is an eclipse plugin for jakarta commons-lang users.
It features automatic generation of the following methods using
commons-lang builders: toString(), hashCode(), equals(Object),
compareTo(Object).
WWW: http://sourceforge.net/projects/commonclipse/
PR: ports/118890
Submitted by: Sutra Zhou <zhoushuqun at gmail.com>
Diffstat (limited to 'java')
-rw-r--r-- | java/Makefile | 1 | ||||
-rw-r--r-- | java/commonclipse/Makefile | 34 | ||||
-rw-r--r-- | java/commonclipse/distinfo | 3 | ||||
-rw-r--r-- | java/commonclipse/pkg-descr | 6 | ||||
-rw-r--r-- | java/commonclipse/pkg-plist | 5 |
5 files changed, 49 insertions, 0 deletions
diff --git a/java/Makefile b/java/Makefile index b4b5b5cb3f31..2063eae379e3 100644 --- a/java/Makefile +++ b/java/Makefile @@ -11,6 +11,7 @@ SUBDIR += cacao SUBDIR += castor SUBDIR += classpath + SUBDIR += commonclipse SUBDIR += cos SUBDIR += cryptix-jce SUBDIR += dbvis diff --git a/java/commonclipse/Makefile b/java/commonclipse/Makefile new file mode 100644 index 000000000000..1ef199dccb2a --- /dev/null +++ b/java/commonclipse/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: commonclipse +# Date created: 20 December 2007 +# Whom: Sutra Zhou <zhoushuqun@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= commonclipse +PORTVERSION= 1.3.0 +CATEGORIES= java devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= commonclipse +DISTNAME= net.sf.commonclipse_${PORTVERSION} +DIST_SUBDIR= eclipse + +MAINTAINER= zhoushuqun@gmail.com +COMMENT= Commonclipse is an eclipse plugin for jakarta commons-lang users + +RUN_DEPENDS= eclipse:${PORTSDIR}/java/eclipse + +NO_BUILD= yes +NO_WRKSUBDIR= yes +USE_ZIP= yes +USE_JAVA= yes +JAVA_VERSION= 1.4+ +JAVA_OS= native +PLIST_SUB= DISTNAME=${DISTNAME} + +do-install: + @${MKDIR} ${PREFIX}/eclipse + @${CP} -r ${WRKSRC}/plugins ${PREFIX}/eclipse + @${CP} -r ${WRKSRC}/features ${PREFIX}/eclipse + +.include <bsd.port.mk> diff --git a/java/commonclipse/distinfo b/java/commonclipse/distinfo new file mode 100644 index 000000000000..e249054ceed6 --- /dev/null +++ b/java/commonclipse/distinfo @@ -0,0 +1,3 @@ +MD5 (eclipse/net.sf.commonclipse_1.3.0.zip) = dd6f4511af16ca0f9f018f1718ff79c9 +SHA256 (eclipse/net.sf.commonclipse_1.3.0.zip) = bbab26c969e8acee47c3f9ad67f6b4378937c7bdee40a808240992516149f89a +SIZE (eclipse/net.sf.commonclipse_1.3.0.zip) = 50194 diff --git a/java/commonclipse/pkg-descr b/java/commonclipse/pkg-descr new file mode 100644 index 000000000000..37f3fe47ba52 --- /dev/null +++ b/java/commonclipse/pkg-descr @@ -0,0 +1,6 @@ +Commonclipse is an eclipse plugin for jakarta commons-lang users. +It features automatic generation of the following methods using +commons-lang builders: toString(), hashCode(), equals(Object), +compareTo(Object). + +WWW: http://sourceforge.net/projects/commonclipse/ diff --git a/java/commonclipse/pkg-plist b/java/commonclipse/pkg-plist new file mode 100644 index 000000000000..e4018c18b8f6 --- /dev/null +++ b/java/commonclipse/pkg-plist @@ -0,0 +1,5 @@ +eclipse/features/%%DISTNAME%%.jar +eclipse/plugins/%%DISTNAME%%.jar +@dirrmtry eclipse/plugins +@dirrmtry eclipse/features +@dirrmtry eclipse |