From owner-svn-ports-all@freebsd.org Fri Dec 8 09:00:27 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7B6BAE9E425; Fri, 8 Dec 2017 09:00:27 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 45BEC69D29; Fri, 8 Dec 2017 09:00:27 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB890Q2w018409; Fri, 8 Dec 2017 09:00:26 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB890QON018407; Fri, 8 Dec 2017 09:00:26 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201712080900.vB890QON018407@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 8 Dec 2017 09:00:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455776 - head/net/flowgrep X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/net/flowgrep X-SVN-Commit-Revision: 455776 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2017 09:00:27 -0000 Author: amdmi3 Date: Fri Dec 8 09:00:26 2017 New Revision: 455776 URL: https://svnweb.freebsd.org/changeset/ports/455776 Log: - Add LICENSE - Fix shebangs - Add NO_ARCH - Update WWW Approved by: portmgr blanket Modified: head/net/flowgrep/Makefile head/net/flowgrep/pkg-descr Modified: head/net/flowgrep/Makefile ============================================================================== --- head/net/flowgrep/Makefile Fri Dec 8 08:33:45 2017 (r455775) +++ head/net/flowgrep/Makefile Fri Dec 8 09:00:26 2017 (r455776) @@ -3,6 +3,7 @@ PORTNAME= flowgrep PORTVERSION= 0.9 +PORTREVISION= 1 CATEGORIES= net security MASTER_SITES= http://www.monkey.org/~jose/software/flowgrep/ DISTNAME= flowgrep-${PORTVERSION} @@ -12,8 +13,12 @@ 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 Modified: head/net/flowgrep/pkg-descr ============================================================================== --- head/net/flowgrep/pkg-descr Fri Dec 8 08:33:45 2017 (r455775) +++ head/net/flowgrep/pkg-descr Fri Dec 8 09:00:26 2017 (r455776) @@ -5,4 +5,4 @@ TCP streams, and IP and UDP fragments into single pack 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/