diff options
author | Jason Helfman <jgh@FreeBSD.org> | 2013-03-16 07:30:33 +0000 |
---|---|---|
committer | Jason Helfman <jgh@FreeBSD.org> | 2013-03-16 07:30:33 +0000 |
commit | ca5d93cf903ba56b05e9757b6e30edad3c5c4e24 (patch) | |
tree | b32fb5ff30f2036edd8e4aaf39a4b2c704dc2b52 /java | |
parent | 794fdc1d52a7356bd1422eee0706831885f2bff1 (diff) | |
download | ports-ca5d93cf903ba56b05e9757b6e30edad3c5c4e24.tar.gz ports-ca5d93cf903ba56b05e9757b6e30edad3c5c4e24.zip |
Notes
Diffstat (limited to 'java')
-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 |