From owner-svn-ports-head@FreeBSD.ORG Mon Aug 11 19:51:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2EDE8F70 for ; Mon, 11 Aug 2014 19:51:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D5912AA3 for ; Mon, 11 Aug 2014 19:51:18 +0000 (UTC) Received: from adamw (uid 959) (envelope-from adamw@FreeBSD.org) id 2890 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Mon, 11 Aug 2014 19:51:17 +0000 From: Adam Weinberger Date: Mon, 11 Aug 2014 19:51:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364646 - in head/dns: . dnshistory X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e91eb6.2890.1d90e852@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 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, 11 Aug 2014 19:51:18 -0000 Author: adamw Date: Mon Aug 11 19:51:17 2014 New Revision: 364646 URL: http://svnweb.freebsd.org/changeset/ports/364646 QAT: https://qat.redports.org/buildarchive/r364646/ Log: Add dns/dnshistory. It caches DNS lookups into a BDB database. It's designed to be used with awffull. Provide a means for storing a history of DNS/Name changes for the IP Addresses extracted from web log files. The major target being that multiple analyses of older log files do not require re-lookups of IP Address to FQDNs, and additionally maintain the accuracy of the lookup as it was then and not as it is now. WWW: http://www.stedee.id.au/dnshistory Added: head/dns/dnshistory/ head/dns/dnshistory/Makefile (contents, props changed) head/dns/dnshistory/distinfo (contents, props changed) head/dns/dnshistory/pkg-descr (contents, props changed) Modified: head/dns/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Mon Aug 11 19:35:46 2014 (r364645) +++ head/dns/Makefile Mon Aug 11 19:51:17 2014 (r364646) @@ -34,6 +34,7 @@ SUBDIR += dnscrypt-proxy SUBDIR += dnsflood SUBDIR += dnshijacker + SUBDIR += dnshistory SUBDIR += dnsjava SUBDIR += dnsmasq SUBDIR += dnsmasq-devel Added: head/dns/dnshistory/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/dnshistory/Makefile Mon Aug 11 19:51:17 2014 (r364646) @@ -0,0 +1,33 @@ +# Created by: adamw +# $FreeBSD$ + +PORTNAME= dnshistory +PORTVERSION= 1.3 +CATEGORIES= dns +MASTER_SITES= http://www.stedee.id.au/files/ + +MAINTAINER= adamw@FreeBSD.org +COMMENT= Store DNS lookups to a DB + +LICENSE= GPLv2 + +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre + +USE_BDB= yes +GNU_CONFIGURE= yes + +PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz +PORTDOCS= COPYING ChangeLog NEWS + +OPTIONS_DEFINE= DOCS + +.include + +CPPFLAGS+= -I${LOCALBASE}/include -I${BDB_INCLUDE_DIR} +LDFLAGS+= -L${LOCALBASE}/lib -L${BDB_LIB_DIR} + +post-install: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:C|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include Added: head/dns/dnshistory/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/dnshistory/distinfo Mon Aug 11 19:51:17 2014 (r364646) @@ -0,0 +1,2 @@ +SHA256 (dnshistory-1.3.tar.gz) = 608f3a16ff8b99397c4361bbfc0ef28665b0c7380941cb6f89bd0d5ce3e4061b +SIZE (dnshistory-1.3.tar.gz) = 123554 Added: head/dns/dnshistory/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/dnshistory/pkg-descr Mon Aug 11 19:51:17 2014 (r364646) @@ -0,0 +1,7 @@ +Provide a means for storing a history of DNS/Name changes for the IP Addresses +extracted from web log files. The major target being that multiple analyses of +older log files do not require re-lookups of IP Address to FQDNs, and +additionally maintain the accuracy of the lookup as it was then and not as it +is now. + +WWW: http://www.stedee.id.au/dnshistory