aboutsummaryrefslogtreecommitdiff
path: root/java/veditor
diff options
context:
space:
mode:
authorJason Helfman <jgh@FreeBSD.org>2013-03-16 07:30:33 +0000
committerJason Helfman <jgh@FreeBSD.org>2013-03-16 07:30:33 +0000
commitca5d93cf903ba56b05e9757b6e30edad3c5c4e24 (patch)
treeb32fb5ff30f2036edd8e4aaf39a4b2c704dc2b52 /java/veditor
parent794fdc1d52a7356bd1422eee0706831885f2bff1 (diff)
downloadports-ca5d93cf903ba56b05e9757b6e30edad3c5c4e24.tar.gz
ports-ca5d93cf903ba56b05e9757b6e30edad3c5c4e24.zip
- adopt optionsNG
- trim historical header - trim COMMENT Approved by: portmgr (miwi)
Notes
Notes: svn path=/head/; revision=314339
Diffstat (limited to 'java/veditor')
-rw-r--r--java/veditor/Makefile18
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