From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7B0CB1396D9 for ; Tue, 28 Nov 2017 23:52:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A38E7E0C03; Tue, 28 Nov 2017 23:52:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 80CC9E0C03 for ; Tue, 28 Nov 2017 23:52:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2A97133FE49 for ; Tue, 28 Nov 2017 23:52:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 76FB8AAFB for ; Tue, 28 Nov 2017 23:52:27 +0000 (UTC) From: "Sven Wegener" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Wegener" Message-ID: <1511913129.dba2759a7724df69f6ec6fa5f7cdaa8d0c592c50.swegener@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/pdns-recursor/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/pdns-recursor/metadata.xml net-dns/pdns-recursor/pdns-recursor-4.1.0_rc3.ebuild X-VCS-Directories: net-dns/pdns-recursor/ X-VCS-Committer: swegener X-VCS-Committer-Name: Sven Wegener X-VCS-Revision: dba2759a7724df69f6ec6fa5f7cdaa8d0c592c50 X-VCS-Branch: master Date: Tue, 28 Nov 2017 23:52:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 238eb60e-5729-4fc1-8c6a-1ce08cea5199 X-Archives-Hash: 1f75e6399583d8d74671c2ddbeafca3d commit: dba2759a7724df69f6ec6fa5f7cdaa8d0c592c50 Author: Sven Wegener gentoo org> AuthorDate: Tue Nov 28 23:32:07 2017 +0000 Commit: Sven Wegener gentoo org> CommitDate: Tue Nov 28 23:52:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dba2759a net-dns/pdns-recursor: Add sodium USE flag, bug #639018 Package-Manager: Portage-2.3.14, Repoman-2.3.6 net-dns/pdns-recursor/metadata.xml | 1 + net-dns/pdns-recursor/pdns-recursor-4.1.0_rc3.ebuild | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/net-dns/pdns-recursor/metadata.xml b/net-dns/pdns-recursor/metadata.xml index a5208407eaa..e8c54bc6eb5 100644 --- a/net-dns/pdns-recursor/metadata.xml +++ b/net-dns/pdns-recursor/metadata.xml @@ -18,5 +18,6 @@ nameserver performance. Enable support for dev-lang/luajit. Enable support for dev-libs/protobuf. + Use dev-libs/libsodium for cryptography diff --git a/net-dns/pdns-recursor/pdns-recursor-4.1.0_rc3.ebuild b/net-dns/pdns-recursor/pdns-recursor-4.1.0_rc3.ebuild index 46c66b636ec..6840a11c1c9 100644 --- a/net-dns/pdns-recursor/pdns-recursor-4.1.0_rc3.ebuild +++ b/net-dns/pdns-recursor/pdns-recursor-4.1.0_rc3.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://downloads.powerdns.com/releases/${P/_/-}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" -IUSE="libressl luajit protobuf systemd" +IUSE="libressl luajit protobuf sodium systemd" DEPEND="!luajit? ( >=dev-lang/lua-5.1:= ) luajit? ( dev-lang/luajit:= ) @@ -21,6 +21,7 @@ DEPEND="!luajit? ( >=dev-lang/lua-5.1:= ) >=dev-libs/boost-1.42:= ) systemd? ( sys-apps/systemd:0= ) + sodium? ( dev-libs/libsodium:= ) libressl? ( dev-libs/libressl:= ) !libressl? ( dev-libs/openssl:= ) >=dev-libs/boost-1.35:=" @@ -39,6 +40,7 @@ src_configure() { econf \ --sysconfdir=/etc/powerdns \ $(use_enable systemd) \ + $(use_enable sodium libsodium) \ $(use_with !luajit lua) \ $(use_with luajit luajit) \ $(use_with protobuf)