Index: head/net/flowgrep/Makefile =================================================================== --- head/net/flowgrep/Makefile (revision 455775) +++ head/net/flowgrep/Makefile (revision 455776) @@ -1,25 +1,30 @@ # Created by: Corey Smith # $FreeBSD$ PORTNAME= flowgrep PORTVERSION= 0.9 +PORTREVISION= 1 CATEGORIES= net security MASTER_SITES= http://www.monkey.org/~jose/software/flowgrep/ DISTNAME= flowgrep-${PORTVERSION} MAINTAINER= corsmith@gmail.com COMMENT= TCP stream/UDP/IP payload 'grep' utility RUN_DEPENDS= ${PYTHON_SITELIBDIR}/nidsmodule.so:net/pynids -USES= python +LICENSE= BSD4CLAUSE # actually 3, but advertising clause is there + +USES= python shebangfix +SHEBANG_FILES= flowgrep.py NO_BUILD= yes +NO_ARCH= yes PLIST_FILES= sbin/flowgrep man/man8/flowgrep.8.gz do-install: ${INSTALL_SCRIPT} ${WRKSRC}/flowgrep.py \ ${STAGEDIR}${PREFIX}/sbin/flowgrep ${INSTALL_MAN} ${WRKSRC}/flowgrep.8 ${STAGEDIR}${MANPREFIX}/man/man8 .include Index: head/net/flowgrep/pkg-descr =================================================================== --- head/net/flowgrep/pkg-descr (revision 455775) +++ head/net/flowgrep/pkg-descr (revision 455776) @@ -1,8 +1,8 @@ flowgrep is a basic IDS/IPS tool written in python as a way to help you investigate and manage your network. it works by sniffing traffic, reassembling TCP streams, and IP and UDP fragments into single packets, and allowing you to "grep" through their payloads using regular expressions. the quality of the regular expression engine is similar to Perl's. think of it as a marriage of tcpflow, tcpkill, and ngrep. -WWW: http://www.monkey.org/~jose/software/flowgrep/ +WWW: https://www.monkey.org/~jose/software/flowgrep/