From owner-svn-ports-all@freebsd.org Sun Jan 28 04:04:43 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7DD7EED6ABF; Sun, 28 Jan 2018 04:04:43 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1DBAD6A224; Sun, 28 Jan 2018 04:04:43 +0000 (UTC) (envelope-from cy@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 132EB147BF; Sun, 28 Jan 2018 04:04:43 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0S44gcp031758; Sun, 28 Jan 2018 04:04:42 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0S44ghA031754; Sun, 28 Jan 2018 04:04:42 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201801280404.w0S44ghA031754@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Sun, 28 Jan 2018 04:04:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460157 - in head/security: . p5-plog X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: in head/security: . p5-plog X-SVN-Commit-Revision: 460157 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: Sun, 28 Jan 2018 04:04:43 -0000 Author: cy Date: Sun Jan 28 04:04:42 2018 New Revision: 460157 URL: https://svnweb.freebsd.org/changeset/ports/460157 Log: Add the plog an IP Filter log parse utility that summarizes ipmon output into a tablular form. I have been using this tool in various forms on my IP Filter firewalls for almost twenty years. Maybe someone else might find it useful too. Description from http://www.antibozo.net/ogata/webtools/: plog is a parser for the logged output of the ipmon utility that is part of the excellent IP-Filter packet-filtering and NAT package written and maintained by Darren Reed. plog translates the somewhat garbled output from ipmon into a report that aids analysis of your firewall traffic. The current version number is 0.10. Added: head/security/p5-plog/ head/security/p5-plog/Makefile (contents, props changed) head/security/p5-plog/distinfo (contents, props changed) head/security/p5-plog/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Jan 28 02:45:32 2018 (r460156) +++ head/security/Makefile Sun Jan 28 04:04:42 2018 (r460157) @@ -740,6 +740,7 @@ SUBDIR += p5-dicewaregen SUBDIR += p5-openxpki SUBDIR += p5-openxpki-i18n + SUBDIR += p5-plog SUBDIR += pad SUBDIR += pam-modules SUBDIR += pam-mysql Added: head/security/p5-plog/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-plog/Makefile Sun Jan 28 04:04:42 2018 (r460157) @@ -0,0 +1,28 @@ +# Created by: Cy Schubert +# $FreeBSD$ + +PORTNAME= plog +PORTVERSION= 0.10 +CATEGORIES= security perl5 +PKGNAMEPREFIX= p5- +MASTER_SITES= http://www.antibozo.net/ogata/webtools/ +DISTFILES= plog.pl + +MAINTAINER= cy@FreeBSD.org +COMMENT= Perl based ipfilter log reporter + +USES= perl5 shebangfix +EXTRACT_CMD= ${CP} +EXTRACT_BEFORE_ARGS= +EXTRACT_AFTER_ARGS= ${WRKSRC} +NO_BUILD= yes +SHEBANG_FILES= ${WRKSRC}/plog.pl +PLIST_FILES= bin/plog.pl + +pre-extract: + @${MKDIR} ${WRKSRC} + +do-install: + @${INSTALL_SCRIPT} ${WRKSRC}/plog.pl ${STAGEDIR}${PREFIX}/bin + +.include Added: head/security/p5-plog/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-plog/distinfo Sun Jan 28 04:04:42 2018 (r460157) @@ -0,0 +1,3 @@ +TIMESTAMP = 1517109376 +SHA256 (plog.pl) = eb25970253e0726c0e471e32daab07c08ba6efde31894f57a0e0c943ccb3213a +SIZE (plog.pl) = 29165 Added: head/security/p5-plog/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-plog/pkg-descr Sun Jan 28 04:04:42 2018 (r460157) @@ -0,0 +1,7 @@ +plog is a parser for the logged output of the ipmon utility that is part +of the excellent IP-Filter packet-filtering and NAT package written and +maintained by Darren Reed. plog translates the somewhat garbled output +from ipmon into a report that aids analysis of your firewall traffic. +The current version number is 0.10. + +WWW: http://www.antibozo.net/ogata/webtools/