Date: Tue, 14 Apr 2020 18:10:15 +0000 (UTC) From: Craig Leres <leres@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r531711 - in head/security/zeek: . files Message-ID: <202004141810.03EIAFhX076874@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: leres Date: Tue Apr 14 18:10:15 2020 New Revision: 531711 URL: https://svnweb.freebsd.org/changeset/ports/531711 Log: security/zeek: Fix typo in the rc.d script (From the PR) "bro_stop" should say "zeek_stop" instead. PR: 245612 Reported by: bugs@codejammer.se MFH: 2020Q2 Modified: head/security/zeek/Makefile head/security/zeek/files/zeek.in Modified: head/security/zeek/Makefile ============================================================================== --- head/security/zeek/Makefile Tue Apr 14 18:05:49 2020 (r531710) +++ head/security/zeek/Makefile Tue Apr 14 18:10:15 2020 (r531711) @@ -3,6 +3,7 @@ PORTNAME= zeek PORTVERSION= 3.0.3 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= https://old.zeek.org/downloads/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} @@ -15,6 +16,7 @@ LICENSE= BSD3CLAUSE BROKEN_powerpc64= Does not build: error: zero-size array 'names' USES= bison cmake compiler:c++11-lang gettext-runtime ninja perl5 python shebangfix ssl +USE_LDCONFIG= yes PORTSCOUT= limit:0,even Modified: head/security/zeek/files/zeek.in ============================================================================== --- head/security/zeek/files/zeek.in Tue Apr 14 18:05:49 2020 (r531710) +++ head/security/zeek/files/zeek.in Tue Apr 14 18:10:15 2020 (r531711) @@ -38,7 +38,7 @@ zeek_start() { fi } -bro_stop() { +zeek_stop() { if [ ! "${node}" ]; then $zeekctl_program stop
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004141810.03EIAFhX076874>