From owner-svn-ports-all@FreeBSD.ORG Mon Aug 19 11:24:33 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B1ED9E77; Mon, 19 Aug 2013 11:24:33 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9D29827A6; Mon, 19 Aug 2013 11:24:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7JBOXSY073037; Mon, 19 Aug 2013 11:24:33 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7JBOXhW073031; Mon, 19 Aug 2013 11:24:33 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201308191124.r7JBOXhW073031@svn.freebsd.org> From: Alexey Dokuchaev Date: Mon, 19 Aug 2013 11:24:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r324974 - head/net/ipsumdump X-SVN-Group: ports-head 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.14 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: Mon, 19 Aug 2013 11:24:33 -0000 Author: danfe Date: Mon Aug 19 11:24:32 2013 New Revision: 324974 URL: http://svnweb.freebsd.org/changeset/ports/324974 Log: - Try to fix parallel (-jX) builds by specifying that main program depends on the accompanying library - Convert USE_GMAKE and USE_PERL5 to USES - Do not use .for loop to install just one documentation file - Utilize OPTIONS_SUB and IPV6_CONFIGURE_ENABLE while here - Augment CATEGORIES in IPv6 case - Synchronize port description with the upstream; sanitize its formatting Reported by: marino Approved by: miwi, bapt (portmgr, implicit) Modified: head/net/ipsumdump/Makefile head/net/ipsumdump/pkg-descr Modified: head/net/ipsumdump/Makefile ============================================================================== --- head/net/ipsumdump/Makefile Mon Aug 19 11:21:36 2013 (r324973) +++ head/net/ipsumdump/Makefile Mon Aug 19 11:24:32 2013 (r324974) @@ -1,4 +1,4 @@ -# Created by: krion@FreeBSD.org +# Created by: Kirill Ponomarew # $FreeBSD$ PORTNAME= ipsumdump @@ -10,9 +10,9 @@ MASTER_SITES= http://www.cs.ucla.edu/~ko MAINTAINER= miwi@FreeBSD.org COMMENT= Produce ASCII summary of network traffic or tcpdump(1) file +USES= gmake perl5 GNU_CONFIGURE= yes -USE_PERL5_BUILD=yes -USE_GMAKE= yes +USE_PERL5= build MAN1= ${PORTNAME}.1 ipaggcreate.1 ipaggmanip.1 @@ -20,23 +20,24 @@ PORTDOCS= README PLIST_FILES= bin/ipaggcreate bin/ipsumdump bin/ipaggmanip OPTIONS_DEFINE= IPV6 DOCS +OPTIONS_SUB= yes -.include +IPV6_CONFIGURE_ENABLE= ipv6 + +.include + +# Try to unbreak parallel (-jX) builds +post-patch: + @${ECHO_CMD} 'src: @LIBCLICK_TARGET@' >> ${WRKSRC}/Makefile.in .if ${PORT_OPTIONS:MIPV6} -CONFIGURE_ARGS+=--enable-ipv6 -PLIST_SUB+= IPV6="" -.else -CONFIGURE_ARGS+=--disable-ipv6 -PLIST_SUB+= IPV6="@comment " +CATEGORIES+= ipv6 .endif post-install: .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} -.for i in README - ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} -.endfor + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif .include Modified: head/net/ipsumdump/pkg-descr ============================================================================== --- head/net/ipsumdump/pkg-descr Mon Aug 19 11:21:36 2013 (r324973) +++ head/net/ipsumdump/pkg-descr Mon Aug 19 11:24:32 2013 (r324974) @@ -1,11 +1,11 @@ -Ipsumdump program summarizes TCP/IP dump files into a -self-describing ASCII format easily readable by humans and -programs. Ipsumdump can read packets from network interfaces, -from tcpdump files, and from existing ipsumdump files. It will -transparently uncompress tcpdump or ipsumdump files when -necessary. It can randomly sample traffic, filter traffic based -on its contents, anonymize IP addresses, and sort packets from -multiple dumps by timestamp. Also, it can optionally create a -tcpdump file containing actual packet data. +The ipsumdump program summarizes TCP/IP dump files into a self-describing +ASCII format easily readable by humans and programs. + +Ipsumdump can read packets from network interfaces, from tcpdump files, and +from existing ipsumdump files. It will transparently uncompress tcpdump or +ipsumdump files when necessary. It can randomly sample traffic, filter +traffic based on its contents, anonymize IP addresses, and sort packets from +multiple dumps by timestamp. Also, it can optionally create a tcpdump file +containing actual packet data. WWW: http://www.cs.ucla.edu/~kohler/ipsumdump/