2006-12-09 14:00:39 +01:00
|
|
|
# New ports collection makefile for: veditor
|
|
|
|
# Date created: 19 Oct 2006
|
|
|
|
# Whom: lon_kamikaze@gmx.de
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= veditor
|
2009-10-29 23:30:52 +01:00
|
|
|
PORTVERSION= 0.7.0
|
2010-03-28 08:47:48 +02:00
|
|
|
PORTREVISION= 2
|
2006-12-09 14:00:39 +01:00
|
|
|
CATEGORIES= java cad
|
2009-08-22 02:24:37 +02:00
|
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20runtime/VEditor%20${PORTVERSION}
|
2006-12-09 14:00:39 +01:00
|
|
|
DISTNAME= net.sourceforge.${PORTNAME}_${PORTVERSION}
|
2008-03-06 20:09:30 +01:00
|
|
|
EXTRACT_SUFX= .jar
|
|
|
|
EXTRACT_ONLY=
|
2006-12-09 14:00:39 +01:00
|
|
|
|
2008-03-06 20:09:30 +01:00
|
|
|
MAINTAINER= kamikaze@bsdforen.de
|
2006-12-09 14:00:39 +01:00
|
|
|
COMMENT= A Verilog and VHDL editor plugin for eclipse
|
|
|
|
|
2008-09-26 10:54:18 +02:00
|
|
|
RUN_DEPENDS= eclipse:${PORTSDIR}/java/eclipse
|
2008-03-06 20:09:30 +01:00
|
|
|
|
|
|
|
OPTIONS= VERILOG "Support Verilog with Icarus Verilog" On \
|
|
|
|
VHDL "Support VHDL with FreeHDL" On
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
2006-12-09 14:00:39 +01:00
|
|
|
|
|
|
|
.if defined(WITH_VERILOG)
|
|
|
|
RUN_DEPENDS+= iverilog:${PORTSDIR}/cad/iverilog
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITH_VHDL)
|
|
|
|
RUN_DEPENDS+= freehdl-v2cc:${PORTSDIR}/cad/freehdl
|
|
|
|
.endif
|
|
|
|
|
|
|
|
PLIST_SUB= VER=${PORTVERSION}
|
|
|
|
|
|
|
|
NO_BUILD= yes
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
|
2007-08-04 13:41:30 +02:00
|
|
|
ECLIPSE= ${PREFIX}/eclipse
|
2006-12-09 14:00:39 +01:00
|
|
|
PLUGINS= plugins
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
@${MKDIR} ${ECLIPSE}/${PLUGINS}
|
2008-03-06 20:09:30 +01:00
|
|
|
@${INSTALL_DATA} ${DISTDIR}/${DISTFILES} ${ECLIPSE}/${PLUGINS}/
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|