From owner-svn-ports-head@FreeBSD.ORG Sat Jan 5 07:53:51 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id AA0B0736; Sat, 5 Jan 2013 07:53:51 +0000 (UTC) (envelope-from rm@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 9A096E11; Sat, 5 Jan 2013 07:53:51 +0000 (UTC) Received: from svn.freebsd.org (svn.FreeBSD.org [8.8.178.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r057rpKC026603; Sat, 5 Jan 2013 07:53:51 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r057rowG026596; Sat, 5 Jan 2013 07:53:50 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201301050753.r057rowG026596@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Sat, 5 Jan 2013 07:53:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309950 - in head/net-mgmt/argus3-clients: . files 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: Sat, 05 Jan 2013 07:53:51 -0000 Author: rm Date: Sat Jan 5 07:53:50 2013 New Revision: 309950 URL: http://svnweb.freebsd.org/changeset/ports/309950 Log: - update to 3.0.6.2 - convert to optionsng - remove unneded patches while here: - trim Makefile header - add license (GPLv3) - add missing perl dependency PR: 173036 Submitted by: Paul Schmehl Approved by: Alexander Demin Deleted: head/net-mgmt/argus3-clients/files/ Modified: head/net-mgmt/argus3-clients/Makefile head/net-mgmt/argus3-clients/distinfo head/net-mgmt/argus3-clients/pkg-descr head/net-mgmt/argus3-clients/pkg-plist Modified: head/net-mgmt/argus3-clients/Makefile ============================================================================== --- head/net-mgmt/argus3-clients/Makefile Sat Jan 5 07:52:19 2013 (r309949) +++ head/net-mgmt/argus3-clients/Makefile Sat Jan 5 07:53:50 2013 (r309950) @@ -1,13 +1,8 @@ -# New ports collection makefile for: argus3-clients -# Date created: 24 March 2004 -# Whom: Stefan Esser -# +# Created by: Stefan Esser # $FreeBSD$ -# PORTNAME= argus-clients -PORTVERSION= 3.0.4.1 -PORTREVISION= 1 +PORTVERSION= 3.0.6.2 CATEGORIES= net-mgmt security MASTER_SITES= http://qosient.com/argus/src/ \ ftp://qosient.com/pub/argus/src/ @@ -15,65 +10,73 @@ MASTER_SITES= http://qosient.com/argus/s MAINTAINER= pauls@utdallas.edu COMMENT= Client programs for the argus IP network transaction auditing tool +LICENSE= GPLv3 + CONFLICTS= argus-clients-2* argus-clients-sasl-2* -OPTIONS+= SASL "SASL authentication support" on \ - MYSQL "MySQL database support" on \ - GEOIP "GeoIP library support" off +OPTIONS_DEFINE= GEOIP MANPAGES MYSQL SASL +OPTIONS_DEFAULT=MANPAGES MYSQL SASL .include USE_BISON= build GNU_CONFIGURE= true USE_NCURSES= yes +USE_PERL5= yes -.if defined(WITH_SASL) -PKGNAMESUFFIX= -sasl +.if ${PORT_OPTIONS:MSASL} +PKGNAMESUFFIX+= -sasl LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 CONFIGURE_ARGS+= --with-sasl=${LOCALBASE} .endif -.if defined(WITH_MYSQL) +.if ${PORT_OPTIONS:MMYSQL} USE_MYSQL= yes PLIST_SUB+= MYSQL="" +MAN1+= rasql.1 rasqlinsert.1 rasqltimeindex.1 .else PLIST_SUB+= MYSQL="@comment " .endif -.if defined(WITH_GEOIP) +.if ${PORT_OPTIONS:MGEOIP} LIB_DEPENDS+= GeoIP:${PORTSDIR}/net/GeoIP -CONFIGURE_ARGS+= --with-GeoIP=${LOCALBASE} +CONFIGURE_ARGS+= --with-GeoIP=${LOCALBASE} .endif -MAN1= ra.1 rabins.1 racluster.1 racount.1 ragraph.1 rahisto.1 \ - ranonymize.1 rasort.1 rasplit.1 rastream.1 rastrip.1 -MAN5= racluster.5 radium.conf.5 rarc.5 +MAN1+= ra.1 rabins.1 racluster.1 raconvert.1 racount.1 radump.1 raevent.1 \ + rafilteraddr.1 ragraph.1 ragrep.1 rahisto.1 ralabel.1 ranonymize.1 \ + rapath.1 rapolicy.1 rasort.1 rasplit.1 rastream.1 rastrip.1 +MAN5= racluster.5 radium.conf.5 ralabel.conf.5 ranonymize.5 rarc.5 MAN8= radium.8 -.include - do-install: -.for i in ra rabins racluster racount radump rafilteraddr \ - rahisto ralabel ranonymize rapath rapolicy \ - raservices rasort rasplit rastream \ - rastrip ratemplate ratimerange ratop ratree rauserdata +.for i in ra rabins racluster raconvert racount radium radump raevent \ + rafilteraddr ragrep rahisto ralabel ranonymize rapath rapolicy \ + rarpwatch raservices rasort rasplit rastream rastrip \ + ratemplate ratimerange ratop rauserdata ${INSTALL_PROGRAM} ${WRKSRC}/bin/$i ${PREFIX}/bin/$i .endfor -.if defined(WITH_MYSQL) -.for i in rasql rasqlinsert + +.for i in argusclientbug radark ragraph rahosts raips raplot raports + ${INSTALL_SCRIPT} ${WRKSRC}/bin/$i ${PREFIX}/bin/$i +.endfor + +.if ${PORT_OPTIONS:MMYSQL} +.for i in rasql rasqlinsert rasqltimeindex ${INSTALL_PROGRAM} ${WRKSRC}/bin/$i ${PREFIX}/bin/$i .endfor .endif .for i in radark ragraph rahosts raports ${INSTALL_SCRIPT} ${WRKSRC}/bin/$i ${PREFIX}/bin/$i .endfor -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}/ -.for i in README COPYING doc/CHANGES doc/FAQ doc/HOW-TO +.for i in AUTHORS CHANGES CREDITS ChangeLog INSTALL \ + MANIFEST README VERSION ${INSTALL_DATA} ${WRKSRC}/$i ${DOCSDIR} .endfor .endif -.if !defined(NOMAN) +.if ${PORT_OPTIONS:MMANPAGES} .for i in ${MAN1} ${INSTALL_DATA} ${WRKSRC}/man/man1/$i ${MANPREFIX}/man/man1 .endfor @@ -85,9 +88,25 @@ do-install: .endfor .endif ${MKDIR} ${EXAMPLESDIR} -.for i in Config Startup System +.for i in Config Database Startup System ${MKDIR} ${EXAMPLESDIR}/$i - ${INSTALL_DATA} ${WRKSRC}/support/$i/* ${EXAMPLESDIR}/$i .endfor -.include +.for i in delegated-ipv4-latest excel.rc iana-address-file \ + iana-ipv4-address iana-multicast-address iana-port-numbers \ + racluster.conf radium.conf ragetcountrycodes.sh ralabel.conf \ + ranonymize.conf rarc rarc.print.all.conf rastream.sh std.sig \ + wireshark.manuf.txt + ${INSTALL_DATA} ${WRKSRC}/support/Config/$i ${EXAMPLESDIR}/Config/$i +.endfor +.for i in MySQL.Archive.sh README + ${INSTALL_DATA} ${WRKSRC}/support/Database/$i ${EXAMPLESDIR}/Database/$i +.endfor +.for i in README com.qosient.radium.plist com.qosient.rasplit.plist \ + radium radium.service rasplit + ${INSTALL_DATA} ${WRKSRC}/support/Startup/$i ${EXAMPLESDIR}/Startup/$i +.endfor +.for i in magic + ${INSTALL_DATA} ${WRKSRC}/support/System/$i ${EXAMPLESDIR}/System/$i +.endfor +.include Modified: head/net-mgmt/argus3-clients/distinfo ============================================================================== --- head/net-mgmt/argus3-clients/distinfo Sat Jan 5 07:52:19 2013 (r309949) +++ head/net-mgmt/argus3-clients/distinfo Sat Jan 5 07:53:50 2013 (r309950) @@ -1,2 +1,2 @@ -SHA256 (argus-clients-3.0.4.1.tar.gz) = c56cb81cc9a898f638cacd9973b43fd01e0dcca3b8c7fcaa8b8c5d0456b8b581 -SIZE (argus-clients-3.0.4.1.tar.gz) = 2116531 +SHA256 (argus-clients-3.0.6.2.tar.gz) = f51d7c8d18fa2236f3fe3726deb3c0b8308c0a6ca767c6089811963da95330fc +SIZE (argus-clients-3.0.6.2.tar.gz) = 2426454 Modified: head/net-mgmt/argus3-clients/pkg-descr ============================================================================== --- head/net-mgmt/argus3-clients/pkg-descr Sat Jan 5 07:52:19 2013 (r309949) +++ head/net-mgmt/argus3-clients/pkg-descr Sat Jan 5 07:53:50 2013 (r309950) @@ -1,9 +1,9 @@ Client programs that read, parse and process Argus data, and comprise the client part of the Audit Record Generation and Utilization System. -Argus is a generic IP network transaction auditing tool that has been used -by thousands of sites to perform a number of powerful network management -tasks that are currently not possible using commercial network management +Argus is a generic IP network transaction auditing tool that has been used +by thousands of sites to perform a number of powerful network management +tasks that are currently not possible using commercial network management tools. Argus runs as an application level daemon, promiscuously reading network Modified: head/net-mgmt/argus3-clients/pkg-plist ============================================================================== --- head/net-mgmt/argus3-clients/pkg-plist Sat Jan 5 07:52:19 2013 (r309949) +++ head/net-mgmt/argus3-clients/pkg-plist Sat Jan 5 07:53:50 2013 (r309950) @@ -1,55 +1,74 @@ +bin/argusclientbug bin/ra bin/rabins bin/racluster +bin/raconvert bin/racount bin/radark +bin/radium bin/radump +bin/raevent bin/rafilteraddr bin/ragraph +bin/ragrep bin/rahisto bin/rahosts +bin/raips bin/ralabel bin/ranonymize bin/rapath +bin/raplot bin/rapolicy bin/raports +bin/rarpwatch bin/raservices bin/rasort bin/rasplit %%MYSQL%%bin/rasql %%MYSQL%%bin/rasqlinsert +%%MYSQL%%bin/rasqltimeindex bin/rastream bin/rastrip bin/ratemplate bin/ratimerange bin/ratop -bin/ratree bin/rauserdata +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/CHANGES -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/FAQ -%%PORTDOCS%%%%DOCSDIR%%/HOW-TO +%%PORTDOCS%%%%DOCSDIR%%/CREDITS +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/MANIFEST %%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/VERSION %%EXAMPLESDIR%%/Config/delegated-ipv4-latest %%EXAMPLESDIR%%/Config/excel.rc %%EXAMPLESDIR%%/Config/iana-address-file %%EXAMPLESDIR%%/Config/iana-ipv4-address %%EXAMPLESDIR%%/Config/iana-multicast-address %%EXAMPLESDIR%%/Config/iana-port-numbers -%%EXAMPLESDIR%%/Config/ra.print.all.conf %%EXAMPLESDIR%%/Config/racluster.conf %%EXAMPLESDIR%%/Config/radium.conf %%EXAMPLESDIR%%/Config/ragetcountrycodes.sh %%EXAMPLESDIR%%/Config/ralabel.conf %%EXAMPLESDIR%%/Config/ranonymize.conf %%EXAMPLESDIR%%/Config/rarc +%%EXAMPLESDIR%%/Config/rarc.print.all.conf %%EXAMPLESDIR%%/Config/rastream.sh %%EXAMPLESDIR%%/Config/std.sig +%%EXAMPLESDIR%%/Config/wireshark.manuf.txt +%%EXAMPLESDIR%%/Database/MySQL.Archive.sh +%%EXAMPLESDIR%%/Database/README +%%EXAMPLESDIR%%/Startup/README +%%EXAMPLESDIR%%/Startup/com.qosient.radium.plist +%%EXAMPLESDIR%%/Startup/com.qosient.rasplit.plist %%EXAMPLESDIR%%/Startup/radium +%%EXAMPLESDIR%%/Startup/radium.service +%%EXAMPLESDIR%%/Startup/rasplit %%EXAMPLESDIR%%/System/magic -%%EXAMPLESDIR%%/System/protocols @dirrm %%EXAMPLESDIR%%/System @dirrm %%EXAMPLESDIR%%/Startup +@dirrm %%EXAMPLESDIR%%/Database @dirrm %%EXAMPLESDIR%%/Config @dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrmtry %%DOCSDIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%%