Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Mar 2013 07:30:33 +0000 (UTC)
From:      Jason Helfman <jgh@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r314339 - head/java/veditor
Message-ID:  <201303160730.r2G7UX8f058874@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jgh
Date: Sat Mar 16 07:30:33 2013
New Revision: 314339
URL: http://svnweb.freebsd.org/changeset/ports/314339

Log:
  - adopt optionsNG
  - trim historical header
  - trim COMMENT
  
  Approved by:	portmgr (miwi)

Modified:
  head/java/veditor/Makefile

Modified: head/java/veditor/Makefile
==============================================================================
--- head/java/veditor/Makefile	Sat Mar 16 07:29:53 2013	(r314338)
+++ head/java/veditor/Makefile	Sat Mar 16 07:30:33 2013	(r314339)
@@ -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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303160730.r2G7UX8f058874>