From owner-svn-ports-all@freebsd.org Sat May 27 08:57:41 2017 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 1D81CD84130; Sat, 27 May 2017 08:57:41 +0000 (UTC) (envelope-from bapt@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 ECD3D1E53; Sat, 27 May 2017 08:57:40 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4R8vdpD005528; Sat, 27 May 2017 08:57:39 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4R8vdRb005525; Sat, 27 May 2017 08:57:39 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201705270857.v4R8vdRb005525@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 27 May 2017 08:57:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r441830 - in head/dns: . dnsforwarder 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: Sat, 27 May 2017 08:57:41 -0000 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 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 +# $FreeBSD$ + +PORTNAME= dnsforwarder +PORTVERSION= 20170319 +CATEGORIES= dns + +MAINTAINER= amutu@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 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