diff options
author | jgh <jgh@FreeBSD.org> | 2013-03-16 15:30:33 +0800 |
---|---|---|
committer | jgh <jgh@FreeBSD.org> | 2013-03-16 15:30:33 +0800 |
commit | 7dbcd55c5d16e1665c4b32f7a2e6a0ed4557a90f (patch) | |
tree | b32fb5ff30f2036edd8e4aaf39a4b2c704dc2b52 /java/veditor | |
parent | 7e50161b8737260a416a5f3d2494e6484a17bbec (diff) | |
download | freebsd-ports-gnome-7dbcd55c5d16e1665c4b32f7a2e6a0ed4557a90f.tar.gz freebsd-ports-gnome-7dbcd55c5d16e1665c4b32f7a2e6a0ed4557a90f.tar.zst freebsd-ports-gnome-7dbcd55c5d16e1665c4b32f7a2e6a0ed4557a90f.zip |
- adopt optionsNG
- trim historical header
- trim COMMENT
Approved by: portmgr (miwi)
Diffstat (limited to 'java/veditor')
-rw-r--r-- | java/veditor/Makefile | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/java/veditor/Makefile b/java/veditor/Makefile index b2aabfea578a..a9c9b3d04272 100644 --- a/java/veditor/Makefile +++ b/java/veditor/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: veditor -# Date created: 19 Oct 2006 -# Whom: lon_kamikaze@gmx.de -# +# Created by: lon_kamikaze@gmx.de # $FreeBSD$ -# PORTNAME= veditor PORTVERSION= 0.7.1 @@ -15,20 +11,22 @@ EXTRACT_SUFX= .jar EXTRACT_ONLY= MAINTAINER= kamikaze@bsdforen.de -COMMENT= A Verilog and VHDL editor plugin for eclipse +COMMENT= Verilog and VHDL editor plugin for eclipse RUN_DEPENDS= eclipse:${PORTSDIR}/java/eclipse -OPTIONS= VERILOG "Support Verilog with Icarus Verilog" On \ - VHDL "Support VHDL with FreeHDL" On +OPTIONS_DEFINE= VERILOG VHDL +VERILOG_DESC= Support Verilog with Icarus Verilog +VHDL_VHDL= Support VHDL with FreeHDL +OPTIONS_DEFAULT= VERILOG VHDL .include <bsd.port.options.mk> -.if defined(WITH_VERILOG) +.if ${PORT_OPTIONS:MVERILOG} RUN_DEPENDS+= iverilog:${PORTSDIR}/cad/iverilog .endif -.if defined(WITH_VHDL) +.if ${PORT_OPTIONS:MVHDL} RUN_DEPENDS+= freehdl-v2cc:${PORTSDIR}/cad/freehdl .endif |