Date: Mon, 11 Aug 2014 19:51:17 +0000 (UTC) From: Adam Weinberger <adamw@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364646 - in head/dns: . dnshistory Message-ID: <53e91eb6.2890.1d90e852@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.pre.mk> + +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 <bsd.port.post.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53e91eb6.2890.1d90e852>