svn commit: r314339 - head/java/veditor

Jason Helfman jgh at FreeBSD.org
Sat Mar 16 07:30:34 UTC 2013


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 at gmx.de
-#
+# Created by: lon_kamikaze at gmx.de
 # $FreeBSD$
-#
 
 PORTNAME=	veditor
 PORTVERSION=	0.7.1
@@ -15,20 +11,22 @@ EXTRACT_SUFX=	.jar
 EXTRACT_ONLY=
 
 MAINTAINER=	kamikaze at 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
 


More information about the svn-ports-head mailing list