mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
0e32330f15
Chase the devel/libffi update Bump portrevision of all dependent ports to chace shard library version bump in libffi. Update LIB_DEPENDS lines where needed to not require a specific version of libffi.so. PR: 247028 (for tracking)
42 lines
872 B
Makefile
42 lines
872 B
Makefile
# Created by: Johnny Sorocil <jsorocil@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= yosys
|
|
DISTVERSIONPREFIX= yosys-
|
|
DISTVERSION= 0.9
|
|
PORTREVISION= 1
|
|
CATEGORIES= cad
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Yosys Open SYnthesis Suite
|
|
|
|
LICENSE= ISCL
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= abc:cad/abc \
|
|
bash:shells/bash \
|
|
gawk:lang/gawk
|
|
LIB_DEPENDS= libffi.so:devel/libffi
|
|
|
|
USES= bison compiler:c++11-lang gmake pkgconfig python:3.6+ readline \
|
|
shebangfix tcl
|
|
|
|
SHEBANG_FILES= backends/smt2/smtbmc.py \
|
|
misc/yosys-config.in
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= YosysHQ
|
|
|
|
BINARY_ALIAS= python3=${PYTHON_CMD} tclsh=${TCLSH}
|
|
MAKE_ARGS= ABCEXTERNAL=abc
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e '/^CXX =/d; s/^LD = .*/LD = $$(CXX)/' \
|
|
-e '/^CONFIG/s/clang/${CHOSEN_COMPILER_TYPE}/' \
|
|
${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/yosys
|
|
|
|
.include <bsd.port.mk>
|