diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2005-10-15 13:54:45 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2005-10-15 13:54:45 +0000 |
commit | fd0bc66f9f7c005ded9680b3cd589276febe8535 (patch) | |
tree | 35ed55325c76c935b562fad6f3be97055325b9b7 /java | |
parent | 12df1acc45d2df1b56bdf26e6dff47a490ede4b4 (diff) | |
download | ports-fd0bc66f9f7c005ded9680b3cd589276febe8535.tar.gz ports-fd0bc66f9f7c005ded9680b3cd589276febe8535.zip |
Notes
Diffstat (limited to 'java')
-rw-r--r-- | java/Makefile | 1 | ||||
-rw-r--r-- | java/eclipse-webtools/Makefile | 42 | ||||
-rw-r--r-- | java/eclipse-webtools/distinfo | 2 | ||||
-rw-r--r-- | java/eclipse-webtools/pkg-descr | 8 |
4 files changed, 53 insertions, 0 deletions
diff --git a/java/Makefile b/java/Makefile index 8b603abeabb6..ab38d8505c6d 100644 --- a/java/Makefile +++ b/java/Makefile @@ -40,6 +40,7 @@ SUBDIR += eclipse-vep SUBDIR += eclipse-vep-examples SUBDIR += eclipse-viplugin + SUBDIR += eclipse-webtools SUBDIR += eclipseme SUBDIR += forte SUBDIR += gj diff --git a/java/eclipse-webtools/Makefile b/java/eclipse-webtools/Makefile new file mode 100644 index 000000000000..8571e0b53c74 --- /dev/null +++ b/java/eclipse-webtools/Makefile @@ -0,0 +1,42 @@ +# New ports collection makefile for: eclipse-webtools +# Date created: October 14, 2005 +# Whom: markhobden@gmail.com +# +# $FreeBSD$ +# + +PORTNAME= webtools +PORTVERSION= 0.7 +CATEGORIES= java devel www +MASTER_SITES= http://download.eclipse.org/webtools/downloads/drops/R-${PORTVERSION}-200507290654/ +PKGNAMEPREFIX= eclipse- +DISTNAME= wtp-${PORTVERSION} +DIST_SUBDIR= eclipse + +MAINTAINER= freebsd-eclipse@FreeBSD.org +COMMENT= Webtools for eclipse + +RUN_DEPENDS= ${LOCALBASE}/bin/eclipse:${PORTSDIR}/java/eclipse \ + ${LOCALBASE}/eclipse/features/org.eclipse.emf_2.1.1/feature.xml:${PORTSDIR}/java/eclipse-emf \ + ${LOCALBASE}/eclipse/features/org.eclipse.gef_3.1.1/feature.xml:${PORTSDIR}/java/eclipse-gef \ + ${LOCALBASE}/eclipse/features/org.eclipse.jem_1.1.0.1/feature.xml:${PORTSDIR}/java/eclipse-vep + +CONFLICTS= eclipse-lomboz-3.* + +NO_BUILD= yes +NO_WRKSUBDIR= yes +USE_ZIP= yes +USE_JAVA= yes +JAVA_VERSION= 1.4+ +JAVA_OS= native + +do-install: + @${MKDIR} ${PREFIX}/eclipse + @${CP} -r ${WRKSRC}/eclipse/plugins ${PREFIX}/eclipse + @${CP} -r ${WRKSRC}/eclipse/features ${PREFIX}/eclipse + @(cd ${WRKSRC}; ${FIND} -s eclipse/features eclipse/plugins -not -type d) >> ${TMPPLIST} + @(cd ${WRKSRC}; ${FIND} -s -d eclipse/features eclipse/plugins -type d) \ + | ${GREP} -vE 'eclipse/plugins$$|eclipse/features$$' \ + | ${SED} -ne 's,^,@dirrm ,p' >> ${TMPPLIST} + +.include <bsd.port.mk> diff --git a/java/eclipse-webtools/distinfo b/java/eclipse-webtools/distinfo new file mode 100644 index 000000000000..c50b9d155773 --- /dev/null +++ b/java/eclipse-webtools/distinfo @@ -0,0 +1,2 @@ +MD5 (eclipse/wtp-0.7.zip) = 008ce2ad8971c0f450fe94a460b530aa +SIZE (eclipse/wtp-0.7.zip) = 27928806 diff --git a/java/eclipse-webtools/pkg-descr b/java/eclipse-webtools/pkg-descr new file mode 100644 index 000000000000..8f833052db9a --- /dev/null +++ b/java/eclipse-webtools/pkg-descr @@ -0,0 +1,8 @@ +The Eclipse Web Tools Platform (WTP) project extends the Eclipse platform with +tools for developing J2EE Web applications. The WTP project includes the +following tools: source editors for HTML, Javascript, CSS, JSP, SQL, XML, DTD, +XSD, and WSDL; graphical editors for XSD and WSDL; J2EE project natures, +builders, and models and a J2EE navigator; a Web service wizard and explorer, +and WS-I Test Tools; and database access and query tools and models. + +WWW: http://www.eclipse.org/webtools/ |