Hi! The port net/frr8 does not really need BUILD_DEPENDS= gawk:lang/gawk Please replace this with CONFIGURE_ENV+= GAWK=${AWK} It builds just fine then because it does not use any of GNU awk extensions.
In fact, the line CONFIGURE_ENV+= GAWK=${AWK} is not needed, too. Just remove gawk:lang/gawk from BUILD_DEPENDS. It uses plain awk command just fine.
A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/ports/commit/?id=47bc98dd353128d172dd01055beb9f7d29292154 commit 47bc98dd353128d172dd01055beb9f7d29292154 Author: Olivier Cochard <olivier@FreeBSD.org> AuthorDate: 2023-01-10 23:51:35 +0000 Commit: Olivier Cochard <olivier@FreeBSD.org> CommitDate: 2023-01-10 23:53:07 +0000 net/frr8: Remove useless build dependency PR: 268870 Reported by: eugen net/frr8/Makefile | 1 - 1 file changed, 1 deletion(-)
Thanks!