Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Jun 2014 08:36:10 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r356309 - in head/dns: . wdns
Message-ID:  <201406030836.s538aAwf041139@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Tue Jun  3 08:36:10 2014
New Revision: 356309
URL: http://svnweb.freebsd.org/changeset/ports/356309
QAT: https://qat.redports.org/buildarchive/r356309/

Log:
  wdns is a low-level DNS library. It contains a fast DNS message parser
  and various utility functions for manipulating wire-format DNS data.
  
  WWW: https://github.com/farsightsec/wdns
  
  PR:		ports/190552

Added:
  head/dns/wdns/
  head/dns/wdns/Makefile   (contents, props changed)
  head/dns/wdns/distinfo   (contents, props changed)
  head/dns/wdns/pkg-descr   (contents, props changed)
  head/dns/wdns/pkg-plist   (contents, props changed)
Modified:
  head/dns/Makefile

Modified: head/dns/Makefile
==============================================================================
--- head/dns/Makefile	Tue Jun  3 08:25:07 2014	(r356308)
+++ head/dns/Makefile	Tue Jun  3 08:36:10 2014	(r356309)
@@ -173,6 +173,7 @@
     SUBDIR += validns
     SUBDIR += vizone
     SUBDIR += walker
+    SUBDIR += wdns
     SUBDIR += yadifa
     SUBDIR += zkt
     SUBDIR += zonecheck

Added: head/dns/wdns/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/wdns/Makefile	Tue Jun  3 08:36:10 2014	(r356309)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	wdns
+PORTVERSION=	0.5
+CATEGORIES=	dns
+MASTER_SITES=	https://dl.farsightsecurity.com/dist/wdns/
+
+MAINTAINER=	truckman@FreeBSD.org
+COMMENT=	Low-level DNS library
+
+LICENSE=	APACHE20
+
+GNU_CONFIGURE=	yes
+USE_LDCONFIG=	yes
+USE_PKGCONFIG=	yes
+USES=		gmake libtool pathfix pkgconfig
+
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libwdns.so.0.0.0
+
+.include <bsd.port.mk>

Added: head/dns/wdns/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/wdns/distinfo	Tue Jun  3 08:36:10 2014	(r356309)
@@ -0,0 +1,2 @@
+SHA256 (wdns-0.5.tar.gz) = 682993507b310055c9d03a8d10f71f12cd9773958b7d601890881cd59e51bc21
+SIZE (wdns-0.5.tar.gz) = 341361

Added: head/dns/wdns/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/wdns/pkg-descr	Tue Jun  3 08:36:10 2014	(r356309)
@@ -0,0 +1,4 @@
+wdns is a low-level DNS library. It contains a fast DNS message parser
+and various utility functions for manipulating wire-format DNS data.
+
+WWW: https://github.com/farsightsec/wdns

Added: head/dns/wdns/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/wdns/pkg-plist	Tue Jun  3 08:36:10 2014	(r356309)
@@ -0,0 +1,11 @@
+bin/wdns-dump-pcap
+bin/wdns-test-deserialize-rrset
+bin/wdns-test-downcase-rrset
+bin/wdns-test-print-message
+bin/wdns-test-serialize-rrset
+include/wdns.h
+lib/libwdns.a
+lib/libwdns.so
+lib/libwdns.so.0
+lib/libwdns.so.0.0.0
+libdata/pkgconfig/libwdns.pc



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201406030836.s538aAwf041139>