ports/148971: security/afterglow, port upgrade
Paul Schmehl
pauls at utdallas.edu
Mon Jul 26 18:20:03 UTC 2010
>Number: 148971
>Category: ports
>Synopsis: security/afterglow, port upgrade
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: maintainer-update
>Submitter-Id: current-users
>Arrival-Date: Mon Jul 26 18:20:02 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator: Paul Schmehl
>Release: FreeBSD 8.1-PRERELEASE i386
>Organization:
The University of Texas at Dallas
>Environment:
System: FreeBSD hostname.utdallas.edu 8.1-PRERELEASE FreeBSD 8.1-PRERELEASE #16: Wed Jun 30 12:30:50 CDT 2010 root at hostname.utdallas.edu:/usr/obj/usr/src/sys/GENERIC i386
>Description:
security/afterglow, upgrade port to new version
>How-To-Repeat:
>Fix:
--- afterglow.diff begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/security/afterglow/Makefile,v
retrieving revision 1.5
diff -u -r1.5 Makefile
--- Makefile 28 Mar 2010 06:43:16 -0000 1.5
+++ Makefile 26 Jul 2010 18:06:00 -0000
@@ -6,8 +6,7 @@
#
PORTNAME= afterglow
-PORTVERSION= 1.5
-PORTREVISION= 3
+PORTVERSION= 1.6.0
CATEGORIES= security graphics
MASTER_SITES= SF/${PORTNAME}/AfterGlow%201.x/${PORTVERSION}
@@ -20,29 +19,35 @@
WRKSRC= ${WRKDIR}/${PORTNAME}
-DB_SCRIPTS= attackchains.pl deltacalc2.pl deltacalc.pl iptolong.pl \
- snortalert.pl snortdirection.pl snortservice.pl subquery.pl \
- tcpdump2sql.pl
-GRAPH_SCRIPTS= afterglow-lgl.pl afterglow-lgl2.pl afterglow-walrus.pl afterglow.pl
-PARSERS= pf2csv.pl sendmail_parser.pl tcpdump2csv.pl
+CHARTS_SCRIPTS= bar.pl bar2.pl boxplot.pl bubble.pl scatter.pl trendline.pl trendline2.pl
+GRAPH_SCRIPTS= afterglow.pl afterglow-lgl.pl
+LOGANALYSIS_SCRIPTS= anonymize.pl capper.pl merge_logs.pl overview.sh random_logs.pl
+PARSERS= argus2csv.pl ipfw2csv.pl pf2csv.pl sendmail_parser.pl snortalert2csv.pl tcpdump2csv.pl
do-install:
${MKDIR} ${DATADIR}
${MKDIR} ${DATADIR}/data
- ${MKDIR} ${DATADIR}/database
+ ${MKDIR} ${DATADIR}/charts
${MKDIR} ${DATADIR}/graph
+ ${MKDIR} ${DATADIR}/graph/Text
+ ${MKDIR} ${DATADIR}/loganalysis
${MKDIR} ${DATADIR}/parsers
(cd ${WRKSRC}/data/ && ${COPYTREE_SHARE} \* ${DATADIR}/data "! -name generate.pl")
- (cd ${WRKSRC}/src/perl/database/ && ${COPYTREE_SHARE} \* ${DATADIR}/database "! -name *\.pl")
+ (cd ${WRKSRC}/src/perl/charts/ && ${COPYTREE_SHARE} \* ${DATADIR}/charts "! -name *\.pl")
(cd ${WRKSRC}/src/perl/graph/ && ${COPYTREE_SHARE} \* ${DATADIR}/graph "! -name *\.pl")
+ (cd ${WRKSRC}/src/perl/graph/Text && ${COPYTREE_SHARE} \* ${DATADIR}/graph/Text)
+ (cd ${WRKSRC}/src/perl/loganalysis/ && ${COPYTREE_SHARE} \* ${DATADIR}/loganalysis "! -name *\.[pl|sh]")
(cd ${WRKSRC}/src/perl/parsers/ && ${COPYTREE_SHARE} \* ${DATADIR}/parsers "! -name *\.pl")
${INSTALL_SCRIPT} ${WRKSRC}/data/generate.pl ${DATADIR}/data/
-.for f in ${DB_SCRIPTS}
- ${INSTALL_SCRIPT} ${WRKSRC}/src/perl/database/${f} ${DATADIR}/database/${f}
+.for f in ${CHARTS_SCRIPTS}
+ ${INSTALL_SCRIPT} ${WRKSRC}/src/perl/charts/${f} ${DATADIR}/charts/${f}
.endfor
.for f in ${GRAPH_SCRIPTS}
${INSTALL_SCRIPT} ${WRKSRC}/src/perl/graph/${f} ${DATADIR}/graph/${f}
.endfor
+.for f in ${LOGANALYSIS_SCRIPTS}
+ ${INSTALL_SCRIPT} ${WRKSRC}/src/perl/loganalysis/${f} ${DATADIR}/loganalysis/${f}
+.endfor
.for f in ${PARSERS}
${INSTALL_SCRIPT} ${WRKSRC}/src/perl/parsers/${f} ${DATADIR}/parsers/${f}
.endfor
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/security/afterglow/distinfo,v
retrieving revision 1.1
diff -u -r1.1 distinfo
--- distinfo 8 Sep 2007 05:49:35 -0000 1.1
+++ distinfo 26 Jul 2010 18:06:00 -0000
@@ -1,3 +1,3 @@
-MD5 (afterglow-1.5.tar.gz) = 9482ea9dcf0e1dad984084cadf97b653
-SHA256 (afterglow-1.5.tar.gz) = cba1ad5a9529d8cf54d0c1fbeb672051ac3e8e87567e05887d722959a6c1f618
-SIZE (afterglow-1.5.tar.gz) = 35619
+MD5 (afterglow-1.6.0.tar.gz) = 7270ba7e26bc2f102e9488c68b73e852
+SHA256 (afterglow-1.6.0.tar.gz) = 14feec9e943a4223c53e06fb9df2bffdeb29f88482020f600c2794c685e6e17e
+SIZE (afterglow-1.6.0.tar.gz) = 74194
Index: pkg-plist
===================================================================
RCS file: /home/ncvs/ports/security/afterglow/pkg-plist,v
retrieving revision 1.1
diff -u -r1.1 pkg-plist
--- pkg-plist 8 Sep 2007 05:49:35 -0000 1.1
+++ pkg-plist 26 Jul 2010 18:06:00 -0000
@@ -1,3 +1,10 @@
+%%DATADIR%%/charts/bar.pl
+%%DATADIR%%/charts/bar2.pl
+%%DATADIR%%/charts/boxplot.pl
+%%DATADIR%%/charts/bubble.pl
+%%DATADIR%%/charts/scatter.pl
+%%DATADIR%%/charts/trendline.pl
+%%DATADIR%%/charts/trendline2.pl
%%DATADIR%%/data/example.dot
%%DATADIR%%/data/firewall.count.csv
%%DATADIR%%/data/firewall.count.tm3
@@ -9,31 +16,33 @@
%%DATADIR%%/data/vulnerabilities.2.csv
%%DATADIR%%/data/vulnerabilities.csv
%%DATADIR%%/data/vulnerabilities.list
-%%DATADIR%%/database/README
-%%DATADIR%%/database/attackchains.pl
-%%DATADIR%%/database/createDB.sql
-%%DATADIR%%/database/deltacalc.pl
-%%DATADIR%%/database/deltacalc2.pl
-%%DATADIR%%/database/iptolong.pl
-%%DATADIR%%/database/snortalert.pl
-%%DATADIR%%/database/snortdirection.pl
-%%DATADIR%%/database/snortservice.pl
-%%DATADIR%%/database/subquery.pl
-%%DATADIR%%/database/tcpdump2sql.pl
%%DATADIR%%/graph/README
+%%DATADIR%%/graph/Text/CSV.pm
+%%DATADIR%%/graph/Text/CSV_PP.pm
%%DATADIR%%/graph/afterglow-lgl.pl
-%%DATADIR%%/graph/afterglow-lgl2.pl
-%%DATADIR%%/graph/afterglow-walrus.pl
%%DATADIR%%/graph/afterglow.pl
-%%DATADIR%%/graph/color.properties
+%%DATADIR%%/graph/color.tcpspy
+%%DATADIR%%/graph/sample.properties
+%%DATADIR%%/loganalysis/Anonymous.pm
+%%DATADIR%%/loganalysis/README
+%%DATADIR%%/loganalysis/anonymize.pl
+%%DATADIR%%/loganalysis/capper.pl
+%%DATADIR%%/loganalysis/merge_logs.pl
+%%DATADIR%%/loganalysis/overview.sh
+%%DATADIR%%/loganalysis/random_logs.pl
%%DATADIR%%/parsers/README
+%%DATADIR%%/parsers/argus2csv.pl
%%DATADIR%%/parsers/color.properties
%%DATADIR%%/parsers/color.sendmail.properties
+%%DATADIR%%/parsers/ipfw2csv.pl
%%DATADIR%%/parsers/pf2csv.pl
%%DATADIR%%/parsers/sendmail_parser.pl
+%%DATADIR%%/parsers/snortalert2csv.pl
%%DATADIR%%/parsers/tcpdump2csv.pl
@dirrm %%DATADIR%%/parsers
+ at dirrm %%DATADIR%%/loganalysis
+ at dirrm %%DATADIR%%/graph/Text
@dirrm %%DATADIR%%/graph
- at dirrm %%DATADIR%%/database
@dirrm %%DATADIR%%/data
+ at dirrm %%DATADIR%%/charts
@dirrm %%DATADIR%%
--- afterglow.diff ends here ---
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list