From owner-svn-ports-all@freebsd.org Wed Jun 8 18:32:31 2016 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 6D8C5B6F032; Wed, 8 Jun 2016 18:32:31 +0000 (UTC) (envelope-from adamw@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 3A6251E48; Wed, 8 Jun 2016 18:32:31 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u58IWUGp057209; Wed, 8 Jun 2016 18:32:30 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u58IWUuY057208; Wed, 8 Jun 2016 18:32:30 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201606081832.u58IWUuY057208@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Wed, 8 Jun 2016 18:32:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416559 - head/dns/p5-Net-DNS 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.22 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: Wed, 08 Jun 2016 18:32:31 -0000 Author: adamw Date: Wed Jun 8 18:32:30 2016 New Revision: 416559 URL: https://svnweb.freebsd.org/changeset/ports/416559 Log: Digest::HMAC is only needed for TSIG support, so put it behind a TSIG option that defaults to on. Modified: head/dns/p5-Net-DNS/Makefile Modified: head/dns/p5-Net-DNS/Makefile ============================================================================== --- head/dns/p5-Net-DNS/Makefile Wed Jun 8 18:30:53 2016 (r416558) +++ head/dns/p5-Net-DNS/Makefile Wed Jun 8 18:32:30 2016 (r416559) @@ -14,14 +14,14 @@ COMMENT= Perl5 interface to the DNS reso LICENSE= MIT -BUILD_DEPENDS= p5-Digest-HMAC>=1.03:security/p5-Digest-HMAC -RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Digest-BubbleBabble>=0:security/p5-Digest-BubbleBabble \ p5-Test-Pod>=0:devel/p5-Test-Pod -OPTIONS_DEFINE= GOST IDN IPV6 SSHFP +OPTIONS_DEFINE= GOST IDN IPV6 SSHFP TSIG +OPTIONS_DEFAULT=TSIG GOST_DESC= GOST support SSHFP_DESC= SSH2 Fingerprint support +TSIG_DESC= Transaction Signature Support CONFIGURE_ARGS= --no-IPv6-tests --no-online-tests NO_ARCH= yes @@ -34,6 +34,8 @@ IDN_BUILD_DEPENDS= p5-Net-LibIDN>=0.12:d IDN_RUN_DEPENDS= p5-Net-LibIDN>=0.12:dns/p5-Net-LibIDN SSHFP_BUILD_DEPENDS= p5-Digest-BubbleBabble>=0.01:security/p5-Digest-BubbleBabble SSHFP_RUN_DEPENDS= p5-Digest-BubbleBabble>=0.01:security/p5-Digest-BubbleBabble +TSIG_BUILD_DEPENDS= p5-Digest-HMAC>=1.03:security/p5-Digest-HMAC +TSIG_RUN_DEPENDS= p5-Digest-HMAC>=1.03:security/p5-Digest-HMAC .include