From owner-svn-ports-head@FreeBSD.ORG Mon Dec 17 18:23:32 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 170C3970; Mon, 17 Dec 2012 18:23:32 +0000 (UTC) (envelope-from wxs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id F0B088FC13; Mon, 17 Dec 2012 18:23:31 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBHINV64039763; Mon, 17 Dec 2012 18:23:31 GMT (envelope-from wxs@svn.freebsd.org) Received: (from wxs@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBHINVXk039757; Mon, 17 Dec 2012 18:23:31 GMT (envelope-from wxs@svn.freebsd.org) Message-Id: <201212171823.qBHINVXk039757@svn.freebsd.org> From: Wesley Shields Date: Mon, 17 Dec 2012 18:23:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309117 - head/security/afterglow X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Dec 2012 18:23:32 -0000 Author: wxs Date: Mon Dec 17 18:23:30 2012 New Revision: 309117 URL: http://svnweb.freebsd.org/changeset/ports/309117 Log: Update to 1.6.2. PR: ports/173674 Submitted by: Paul Schmehl (maintainer) Added: head/security/afterglow/pkg-message (contents, props changed) Modified: head/security/afterglow/Makefile (contents, props changed) head/security/afterglow/distinfo (contents, props changed) head/security/afterglow/pkg-descr (contents, props changed) head/security/afterglow/pkg-plist (contents, props changed) Modified: head/security/afterglow/Makefile ============================================================================== --- head/security/afterglow/Makefile Mon Dec 17 18:22:27 2012 (r309116) +++ head/security/afterglow/Makefile Mon Dec 17 18:23:30 2012 (r309117) @@ -6,51 +6,40 @@ # PORTNAME= afterglow -PORTVERSION= 1.6.0 -PORTREVISION= 1 -CATEGORIES= security graphics +PORTVERSION= 1.6.2 +CATEGORIES= security graphics net-mgmt MASTER_SITES= SF/${PORTNAME}/AfterGlow%201.x/${PORTVERSION} MAINTAINER= pauls@utdallas.edu COMMENT= A collection of graph-generating scripts +LICENSE= GPLv2 + RUN_DEPENDS= dot:${PORTSDIR}/graphics/graphviz \ p5-Text-CSV>=0:${PORTSDIR}/textproc/p5-Text-CSV \ p5-Crypt-Rijndael>=0:${PORTSDIR}/security/p5-Crypt-Rijndael \ p5-IP-Anonymous>=0:${PORTSDIR}/net/p5-IP-Anonymous NO_BUILD= yes +USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME} -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}/data ${MKDIR} ${DATADIR}/charts - ${MKDIR} ${DATADIR}/graph/Text + ${MKDIR} ${DATADIR}/graph ${MKDIR} ${DATADIR}/loganalysis ${MKDIR} ${DATADIR}/parsers (cd ${WRKSRC}/data/ && ${COPYTREE_SHARE} \* ${DATADIR}/data "! -name generate.pl") + (cd ${WRKSRC}/data/ && ${COPYTREE_BIN} \* ${DATADIR}/data "-name generate.pl") (cd ${WRKSRC}/src/perl/charts/ && ${COPYTREE_SHARE} \* ${DATADIR}/charts "! -name *\.pl") + (cd ${WRKSRC}/src/perl/charts/ && ${COPYTREE_BIN} \* ${DATADIR}/charts "-name *\.pl") (cd ${WRKSRC}/src/perl/graph/ && ${COPYTREE_SHARE} \* ${DATADIR}/graph "! -name *\.pl") + (cd ${WRKSRC}/src/perl/graph/ && ${COPYTREE_BIN} \* ${DATADIR}/graph "-name *\.pl") (cd ${WRKSRC}/src/perl/loganalysis/ && ${COPYTREE_SHARE} \* ${DATADIR}/loganalysis "! ( -name *\.pl -or -name *\.sh )") + (cd ${WRKSRC}/src/perl/loganalysis/ && ${COPYTREE_BIN} \* ${DATADIR}/loganalysis "( -name *\.pl -or -name *\.sh )") (cd ${WRKSRC}/src/perl/parsers/ && ${COPYTREE_SHARE} \* ${DATADIR}/parsers "! -name *\.pl") - ${INSTALL_SCRIPT} ${WRKSRC}/data/generate.pl ${DATADIR}/data/ -.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 + (cd ${WRKSRC}/src/perl/parsers/ && ${COPYTREE_BIN} \* ${DATADIR}/parsers "-name *\.pl") .include Modified: head/security/afterglow/distinfo ============================================================================== --- head/security/afterglow/distinfo Mon Dec 17 18:22:27 2012 (r309116) +++ head/security/afterglow/distinfo Mon Dec 17 18:23:30 2012 (r309117) @@ -1,2 +1,2 @@ -SHA256 (afterglow-1.6.0.tar.gz) = 14feec9e943a4223c53e06fb9df2bffdeb29f88482020f600c2794c685e6e17e -SIZE (afterglow-1.6.0.tar.gz) = 74194 +SHA256 (afterglow-1.6.2.tar.gz) = f40c562c2c849b42ed8c44c88d9a1018a8e33024e4fd368490790f55810589d8 +SIZE (afterglow-1.6.2.tar.gz) = 103662 Modified: head/security/afterglow/pkg-descr ============================================================================== --- head/security/afterglow/pkg-descr Mon Dec 17 18:22:27 2012 (r309116) +++ head/security/afterglow/pkg-descr Mon Dec 17 18:23:30 2012 (r309117) @@ -2,6 +2,6 @@ AfterGlow is a collection of scripts whi generating event graphs and treemaps. AfterGlow 1.x is written in Perl and generates output that can be read by GraphViz or LGL. All the scripts and other files for afterglow are installed in -${DATADIR} +%%DATADIR%% WWW: http://sourceforge.net/projects/afterglow Added: head/security/afterglow/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/afterglow/pkg-message Mon Dec 17 18:23:30 2012 (r309117) @@ -0,0 +1,7 @@ +AfterGlow is a collection of scripts which facilitate +the process of generating graphs. It is the most downloaded +security visualization tool of all times. + +Afterglow documentation may be found online at +http://afterglow.sourceforge.net/ including a FAQ, manual +and screenshots. Be sure to read the documentation carefully. Modified: head/security/afterglow/pkg-plist ============================================================================== --- head/security/afterglow/pkg-plist Mon Dec 17 18:22:27 2012 (r309116) +++ head/security/afterglow/pkg-plist Mon Dec 17 18:23:30 2012 (r309117) @@ -19,12 +19,16 @@ %%DATADIR%%/graph/README %%DATADIR%%/graph/Text/CSV.pm %%DATADIR%%/graph/Text/CSV_PP.pm -%%DATADIR%%/graph/afterglow-lgl.pl %%DATADIR%%/graph/afterglow.pl %%DATADIR%%/graph/color.tcpspy +%%DATADIR%%/graph/gdf.properties %%DATADIR%%/graph/sample.properties -%%DATADIR%%/loganalysis/Anonymous.pm +%%DATADIR%%/loganalysis/Crypt/Rijndael.pm +%%DATADIR%%/loganalysis/IP/Anonymous.pm %%DATADIR%%/loganalysis/README +%%DATADIR%%/loganalysis/Text/CSV.pm +%%DATADIR%%/loganalysis/Text/CSV_PP.pm +%%DATADIR%%/loganalysis/anon.pl %%DATADIR%%/loganalysis/anonymize.pl %%DATADIR%%/loganalysis/capper.pl %%DATADIR%%/loganalysis/merge_logs.pl @@ -40,6 +44,9 @@ %%DATADIR%%/parsers/snortalert2csv.pl %%DATADIR%%/parsers/tcpdump2csv.pl @dirrm %%DATADIR%%/parsers +@dirrm %%DATADIR%%/loganalysis/Text +@dirrm %%DATADIR%%/loganalysis/IP +@dirrm %%DATADIR%%/loganalysis/Crypt @dirrm %%DATADIR%%/loganalysis @dirrm %%DATADIR%%/graph/Text @dirrm %%DATADIR%%/graph