diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2006-12-09 13:00:39 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2006-12-09 13:00:39 +0000 |
commit | dda761511047bcd60b047fe5a9891e532514c10e (patch) | |
tree | ae5429a985badad7613d9c283c79b391b078305c /java | |
parent | 75312a8f7b785739800c0888939b91f23385d3c5 (diff) | |
download | ports-dda761511047bcd60b047fe5a9891e532514c10e.tar.gz ports-dda761511047bcd60b047fe5a9891e532514c10e.zip |
Notes
Diffstat (limited to 'java')
-rw-r--r-- | java/Makefile | 1 | ||||
-rw-r--r-- | java/veditor/Makefile | 59 | ||||
-rw-r--r-- | java/veditor/distinfo | 3 | ||||
-rw-r--r-- | java/veditor/pkg-descr | 5 | ||||
-rw-r--r-- | java/veditor/pkg-plist | 13 |
5 files changed, 81 insertions, 0 deletions
diff --git a/java/Makefile b/java/Makefile index 81e82fc13a39..efb8f0d1ce19 100644 --- a/java/Makefile +++ b/java/Makefile @@ -148,6 +148,7 @@ SUBDIR += sun-wtk SUBDIR += trove4j SUBDIR += tya + SUBDIR += veditor SUBDIR += westhawksnmp SUBDIR += xdoclet diff --git a/java/veditor/Makefile b/java/veditor/Makefile new file mode 100644 index 000000000000..01c20d01faeb --- /dev/null +++ b/java/veditor/Makefile @@ -0,0 +1,59 @@ +# New ports collection makefile for: veditor +# Date created: 19 Oct 2006 +# Whom: lon_kamikaze@gmx.de +# +# $FreeBSD$ +# + +PORTNAME= veditor +PORTVERSION= 0.5.0 +CATEGORIES= java cad +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= net.sourceforge.${PORTNAME}_${PORTVERSION} + +MAINTAINER= lon_kamikaze@gmx.de +COMMENT= A Verilog and VHDL editor plugin for eclipse + +RUN_DEPENDS= eclipse:${PORTSDIR}/java/eclipse + +.if defined(WITH_VERILOG) +RUN_DEPENDS+= iverilog:${PORTSDIR}/cad/iverilog +.endif + +.if defined(WITH_VHDL) +RUN_DEPENDS+= freehdl-v2cc:${PORTSDIR}/cad/freehdl +.endif + +OPTIONS= VERILOG "Support Verilog with Icarus Verilog" On \ + VHDL "Support VHDL with FreeHDL" On + +PLIST_SUB= VER=${PORTVERSION} + +NO_BUILD= yes +USE_ZIP= yes +NO_WRKSUBDIR= yes + +ECLIPSE= ${PREFIX}/eclipse +PLUGINS= plugins + +do-install: + @${MKDIR} ${ECLIPSE}/${PLUGINS} + @${CP} -r ${WRKSRC}/${PLUGINS}/* ${ECLIPSE}/${PLUGINS}/ + +plist: build + @${ECHO} "===> Rebuilding PLIST." + @${TOUCH} ${PLIST} + @${RM} ${PLIST} + @${FIND} -d ${WRKSRC}/${PLUGINS}/ -not -type d \ + | ${SED} "s|${WRKSRC}|eclipse|1" \ + | ${SED} "s|${PORTVERSION}|%%VER%%|g" \ + >> ${PLIST} + @${FIND} -d ${WRKSRC}/${PLUGINS}/ -mindepth 1 -type d \ + | ${SED} "s|${WRKSRC}|@dirrm eclipse|1" \ + | ${SED} "s|${PORTVERSION}|%%VER%%|g" \ + >> ${PLIST} + @${ECHO} "@dirrmtry eclipse/${PLUGINS}" >> ${PLIST} + @${ECHO} "@dirrmtry eclipse" >> ${PLIST} + +.include <bsd.port.mk> diff --git a/java/veditor/distinfo b/java/veditor/distinfo new file mode 100644 index 000000000000..2d7dc8e8f1eb --- /dev/null +++ b/java/veditor/distinfo @@ -0,0 +1,3 @@ +MD5 (net.sourceforge.veditor_0.5.0.zip) = 4ae033914f44b90fb9a7c55ffa21edc3 +SHA256 (net.sourceforge.veditor_0.5.0.zip) = f1adf6620f7e5154b791a05541b7794889988a06ef895a3b146467c31a5dcade +SIZE (net.sourceforge.veditor_0.5.0.zip) = 181378 diff --git a/java/veditor/pkg-descr b/java/veditor/pkg-descr new file mode 100644 index 000000000000..74e4787a0358 --- /dev/null +++ b/java/veditor/pkg-descr @@ -0,0 +1,5 @@ +Eclipse Verilog editor provides Verilog (IEEE-1364) and VHDL language +specific features on Eclipse IDE. It helps coding and debugging in hardware +development based on Verilog or VHDL. + +WWW: http://veditor.sourceforge.net/ diff --git a/java/veditor/pkg-plist b/java/veditor/pkg-plist new file mode 100644 index 000000000000..af9e34e70d23 --- /dev/null +++ b/java/veditor/pkg-plist @@ -0,0 +1,13 @@ +eclipse/plugins/net.sourceforge.veditor_%%VER%%/META-INF/MANIFEST.MF +eclipse/plugins/net.sourceforge.veditor_%%VER%%/icons/hierarchy.gif +eclipse/plugins/net.sourceforge.veditor_%%VER%%/icons/ovr.gif +eclipse/plugins/net.sourceforge.veditor_%%VER%%/icons/pers.gif +eclipse/plugins/net.sourceforge.veditor_%%VER%%/icons/vsrc.gif +eclipse/plugins/net.sourceforge.veditor_%%VER%%/about.html +eclipse/plugins/net.sourceforge.veditor_%%VER%%/plugin.xml +eclipse/plugins/net.sourceforge.veditor_%%VER%%/veditor.jar +@dirrm eclipse/plugins/net.sourceforge.veditor_%%VER%%/META-INF +@dirrm eclipse/plugins/net.sourceforge.veditor_%%VER%%/icons +@dirrm eclipse/plugins/net.sourceforge.veditor_%%VER%% +@dirrmtry eclipse/plugins +@dirrmtry eclipse |