1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-30 05:40:06 +00:00
freebsd-ports/security/p5-plog/Makefile
Cy Schubert d6fae8d266 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.
2018-01-28 04:04:42 +00:00

29 lines
580 B
Makefile

# Created by: Cy Schubert <cy@FreeBSD.org>
# $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 <bsd.port.mk>