svn commit: r531711 - in head/security/zeek: . files

Craig Leres leres at FreeBSD.org
Tue Apr 14 18:10:16 UTC 2020


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 at 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


More information about the svn-ports-all mailing list