From owner-svn-ports-head@freebsd.org Wed Aug 5 14:49:26 2015 Return-Path: Delivered-To: svn-ports-head@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 DEE7A9B2CC9; Wed, 5 Aug 2015 14:49:26 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 B2969119D; Wed, 5 Aug 2015 14:49:26 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t75EnQNl067396; Wed, 5 Aug 2015 14:49:26 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t75EnPjQ067392; Wed, 5 Aug 2015 14:49:25 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201508051449.t75EnPjQ067392@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 5 Aug 2015 14:49:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393592 - in head/dns: . vhostcname X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 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: Wed, 05 Aug 2015 14:49:27 -0000 Author: danfe Date: Wed Aug 5 14:49:24 2015 New Revision: 393592 URL: https://svnweb.freebsd.org/changeset/ports/393592 Log: Add a port of vhostcname, utility that synchronizes DNS with server names and aliases from Apache virtual host configuration. WWW: http://www.gnu.org.ua/software/dnstools/vhostcname.html Added: head/dns/vhostcname/ head/dns/vhostcname/Makefile (contents, props changed) head/dns/vhostcname/distinfo (contents, props changed) head/dns/vhostcname/pkg-descr (contents, props changed) Modified: head/dns/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Wed Aug 5 14:39:42 2015 (r393591) +++ head/dns/Makefile Wed Aug 5 14:49:24 2015 (r393592) @@ -185,6 +185,7 @@ SUBDIR += unbound SUBDIR += updatedd SUBDIR += validns + SUBDIR += vhostcname SUBDIR += vizone SUBDIR += walker SUBDIR += wdns Added: head/dns/vhostcname/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/vhostcname/Makefile Wed Aug 5 14:49:24 2015 (r393592) @@ -0,0 +1,22 @@ +# Created by: Alexey Dokuchaev +# $FreeBSD$ + +PORTNAME= vhostcname +PORTVERSION= 1.00 +CATEGORIES= dns perl5 +MASTER_SITES= ftp://download.gnu.org.ua/pub/release/dnstools/ \ + http://freebsd.nsu.ru/distfiles/ + +MAINTAINER= danfe@FreeBSD.org +COMMENT= Synchronize DNS with server names and aliases from Apache vhost + +LICENSE= GPLv3 + +RUN_DEPENDS= p5-Net-DNS>0:${PORTSDIR}/dns/p5-Net-DNS + +USES= perl5 +USE_PERL5= configure + +PLIST_FILES= bin/vhostcname man/man1/vhostcname.1.gz + +.include Added: head/dns/vhostcname/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/vhostcname/distinfo Wed Aug 5 14:49:24 2015 (r393592) @@ -0,0 +1,2 @@ +SHA256 (vhostcname-1.00.tar.gz) = 1affd0e34472de6faf4ef3d2c522f919195ff9a3647c006247c91891699219fb +SIZE (vhostcname-1.00.tar.gz) = 6042 Added: head/dns/vhostcname/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/vhostcname/pkg-descr Wed Aug 5 14:49:24 2015 (r393592) @@ -0,0 +1,7 @@ +vhostcname synchronizes DNS with server names and aliases from Apache +virtual host configuration. + +It is part of dnstools, a set of utilities for DNS management and related +tasks. + +WWW: http://www.gnu.org.ua/software/dnstools/vhostcname.html