From owner-svn-ports-all@freebsd.org Fri Dec 30 19:20:05 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 82A1CC981C7; Fri, 30 Dec 2016 19:20:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D31B1EA6; Fri, 30 Dec 2016 19:20:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBUJK4B9048071; Fri, 30 Dec 2016 19:20:04 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBUJK44U048067; Fri, 30 Dec 2016 19:20:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201612301920.uBUJK44U048067@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 30 Dec 2016 19:20:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430018 - in head/dns/dnscap: . 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-all@freebsd.org X-Mailman-Version: 2.1.23 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: Fri, 30 Dec 2016 19:20:05 -0000 Author: sunpoet Date: Fri Dec 30 19:20:04 2016 New Revision: 430018 URL: https://svnweb.freebsd.org/changeset/ports/430018 Log: - Update to 1.3.0 - Update LICENSE - Add LICENSE_FILE - Update pkg-descr - Add GitHub repository to WWW - Take maintainership Changes: https://github.com/DNS-OARC/dnscap/releases Added: head/dns/dnscap/pkg-plist (contents, props changed) Deleted: head/dns/dnscap/files/ Modified: head/dns/dnscap/Makefile head/dns/dnscap/distinfo head/dns/dnscap/pkg-descr Modified: head/dns/dnscap/Makefile ============================================================================== --- head/dns/dnscap/Makefile Fri Dec 30 19:19:59 2016 (r430017) +++ head/dns/dnscap/Makefile Fri Dec 30 19:20:04 2016 (r430018) @@ -2,21 +2,27 @@ # $FreeBSD$ PORTNAME= dnscap -DISTVERSION= 134 +PORTVERSION= 1.3.0 +PORTEPOCH= 1 CATEGORIES= dns -MASTER_SITES= http://dnscap.dns-oarc.net/ +MASTER_SITES= https://www.dns-oarc.net/files/dnscap/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= DNS network traffic capture utility -LICENSE= ISCL +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE +OPTIONS_DEFINE= DOCS + +CONFIGURE_ARGS= --enable-shared --enable-static GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip +USES= libtool -PLIST_FILES= bin/dnscap man/man1/dnscap.1.gz +PORTDOCS= * -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/dnscap ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/dnscap.1 ${STAGEDIR}${PREFIX}/man/man1 +post-patch-DOCS-off: + @${REINPLACE_CMD} -e '/^install-data-am: / s| install-dist_docDATA||' ${WRKSRC}/Makefile.in .include Modified: head/dns/dnscap/distinfo ============================================================================== --- head/dns/dnscap/distinfo Fri Dec 30 19:19:59 2016 (r430017) +++ head/dns/dnscap/distinfo Fri Dec 30 19:20:04 2016 (r430018) @@ -1,2 +1,3 @@ -SHA256 (dnscap-134.tar.gz) = eec7af9c9e99753865250f9d6974d10899a208b3da83d0015addf3538137f621 -SIZE (dnscap-134.tar.gz) = 91682 +TIMESTAMP = 1483080473 +SHA256 (dnscap-1.3.0.tar.gz) = 3e31bb57e513d724b6310ebc64773eb00a44ea101978fd738aa4340eabef3635 +SIZE (dnscap-1.3.0.tar.gz) = 405655 Modified: head/dns/dnscap/pkg-descr ============================================================================== --- head/dns/dnscap/pkg-descr Fri Dec 30 19:19:59 2016 (r430017) +++ head/dns/dnscap/pkg-descr Fri Dec 30 19:20:04 2016 (r430018) @@ -1,9 +1,7 @@ -dnscap is a network capture utility designed specifically for DNS -traffic. It normally produces binary data in pcap(3) format, either -on standard output or in successive dump files (based on the -w -command line option.) This utility is similar to tcpdump(1), but -has finer grained packet recognition tailored to DNS transactions -and protocol options. dnscap is expected to be used for gathering -continuous research or audit traces. +dnscap is a network capture utility designed specifically for DNS traffic. It +produces binary data in pcap(3) format. This utility is similar to tcpdump(1), +but has a number of features tailored to DNS transactions and protocol options. +OARC uses dnscap for DITL data collections. WWW: https://www.dns-oarc.net/tools/dnscap +WWW: https://github.com/DNS-OARC/dnscap Added: head/dns/dnscap/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/dnscap/pkg-plist Fri Dec 30 19:20:04 2016 (r430018) @@ -0,0 +1,6 @@ +bin/dnscap +lib/dnscap/pcapdump.a +lib/dnscap/pcapdump.so +lib/dnscap/txtout.a +lib/dnscap/txtout.so +man/man1/dnscap.1.gz