svn commit: r441830 - in head/dns: . dnsforwarder

Baptiste Daroussin bapt at FreeBSD.org
Sat May 27 08:57:41 UTC 2017


Author: bapt
Date: Sat May 27 08:57:39 2017
New Revision: 441830
URL: https://svnweb.freebsd.org/changeset/ports/441830

Log:
  Dnsforwarder is A simple DNS forwarder.Main fetures:
  
   1.Forwarding queries to customized domains (and their subdomains) to
     specified servers over a specified protocol (UDP or TCP).non-standard
     ports are supported;
   2.DNS cache and its controls(including modifying TTL for different domains);
   3.Ignoring DNS responses from upstream servers containing particular IPs;
   4.Loading hosts from file (including the support for wildcards, CName
     redirections and remote hosts files);
   5.Refusing queries to specified domains (for ads blocking);
   6.Cross-platform (Windows, Linux);
  
  WWW: https://github.com/holmium/dnsforwarder
  
  PR:		219370
  Submitted by:	Jov <amutu at amutu.com>

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

Modified: head/dns/Makefile
==============================================================================
--- head/dns/Makefile	Sat May 27 07:39:21 2017	(r441829)
+++ head/dns/Makefile	Sat May 27 08:57:39 2017	(r441830)
@@ -40,6 +40,7 @@
     SUBDIR += dnsdist
     SUBDIR += dnsenum
     SUBDIR += dnsflood
+    SUBDIR += dnsforwarder
     SUBDIR += dnshistory
     SUBDIR += dnsjava
     SUBDIR += dnsmasq

Added: head/dns/dnsforwarder/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/dnsforwarder/Makefile	Sat May 27 08:57:39 2017	(r441830)
@@ -0,0 +1,28 @@
+# Created by: Jov <amutu at amutu.com`>
+# $FreeBSD$
+
+PORTNAME=	dnsforwarder
+PORTVERSION=	20170319
+CATEGORIES=	dns
+
+MAINTAINER=	amutu at amutu.com
+COMMENT=	Dnsforwarder is A simple DNS forwarder
+
+LICENSE=	GPLv3
+
+LIB_DEPENDS=	libcurl.so:ftp/curl
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	holmium
+GH_TAGNAME=	441ef2081651020ac1bd42f91017dbdad044c7d8
+
+USES=		localbase
+
+GNU_CONFIGURE=	yes
+CONFIGURE_ARGS=	--with-ccflags=no
+
+PLIST_FILES=	bin/dnsforwarder
+
+MAKEFILE=	makefile
+
+.include <bsd.port.mk>

Added: head/dns/dnsforwarder/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/dnsforwarder/distinfo	Sat May 27 08:57:39 2017	(r441830)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1495089374
+SHA256 (holmium-dnsforwarder-20170319-441ef2081651020ac1bd42f91017dbdad044c7d8_GH0.tar.gz) = 96d117ac3bd8e55a7a803df991419bfb2b5798897acd4eb76858acea64d2f4ff
+SIZE (holmium-dnsforwarder-20170319-441ef2081651020ac1bd42f91017dbdad044c7d8_GH0.tar.gz) = 335076

Added: head/dns/dnsforwarder/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/dnsforwarder/pkg-descr	Sat May 27 08:57:39 2017	(r441830)
@@ -0,0 +1,13 @@
+Dnsforwarder is A simple DNS forwarder.Main fetures:
+
+ 1.Forwarding queries to customized domains (and their subdomains) to
+   specified servers over a specified protocol (UDP or TCP).non-standard
+   ports are supported;
+ 2.DNS cache and its controls(including modifying TTL for different domains);
+ 3.Ignoring DNS responses from upstream servers containing particular IPs;
+ 4.Loading hosts from file (including the support for wildcards, CName
+   redirections and remote hosts files);
+ 5.Refusing queries to specified domains (for ads blocking);
+ 6.Cross-platform (Windows, Linux);
+
+WWW: https://github.com/holmium/dnsforwarder


More information about the svn-ports-all mailing list