mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
a9f015d155
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
41 lines
940 B
Makefile
41 lines
940 B
Makefile
# Created by: lon_kamikaze@gmx.de
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= veditor
|
|
PORTVERSION= 1.2.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= java cad
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20runtime/VEditor%20${PORTVERSION}
|
|
DISTNAME= net.sourceforge.${PORTNAME}_${PORTVERSION}
|
|
EXTRACT_SUFX= .jar
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Verilog and VHDL editor plugin for eclipse
|
|
|
|
RUN_DEPENDS= eclipse:java/eclipse
|
|
|
|
OPTIONS_DEFINE= VERILOG VHDL
|
|
VERILOG_DESC= Support Verilog with Icarus Verilog
|
|
VHDL_VHDL= Support VHDL with FreeHDL
|
|
OPTIONS_DEFAULT= VERILOG VHDL
|
|
|
|
VERILOG_RUN_DEPENDS= iverilog:cad/iverilog
|
|
VHDL_RUN_DEPENDS= freehdl-v2cc:cad/freehdl
|
|
|
|
PLIST_SUB= VER=${PORTVERSION} \
|
|
ECLIPSE=${ECLIPSE}
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
ECLIPSE= lib/eclipse
|
|
PLUGINS= plugins
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/${ECLIPSE}/${PLUGINS}
|
|
${INSTALL_DATA} ${DISTDIR}/${DISTFILES} \
|
|
${STAGEDIR}${PREFIX}/${ECLIPSE}/${PLUGINS}
|
|
|
|
.include <bsd.port.mk>
|