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 45BB6138334 for ; Fri, 22 Feb 2019 23:36:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FFCFE082D; Fri, 22 Feb 2019 23:36:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1468DE082D for ; Fri, 22 Feb 2019 23:36:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6970433BEBE for ; Fri, 22 Feb 2019 23:36:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70D30546 for ; Fri, 22 Feb 2019 23:36:42 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1550878588.5d65b5571447c81a5c05c71c1d7b49fee9d06221.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/commoncpp2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/commoncpp2/commoncpp2-1.8.1-r4.ebuild X-VCS-Directories: dev-cpp/commoncpp2/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 5d65b5571447c81a5c05c71c1d7b49fee9d06221 X-VCS-Branch: master Date: Fri, 22 Feb 2019 23:36:42 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 780feaf9-301e-48cd-adae-3ca12e95112e X-Archives-Hash: 72e6dd93ef0991f5364d0899d474ff1d commit: 5d65b5571447c81a5c05c71c1d7b49fee9d06221 Author: Stefan Strogin gmail com> AuthorDate: Wed Feb 20 21:40:43 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Fri Feb 22 23:36:28 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d65b557 dev-cpp/commoncpp2: add USE=libressl Closes: https://bugs.gentoo.org/678440 Package-Manager: Portage-2.3.61, Repoman-2.3.12 Signed-off-by: Stefan Strogin gmail.com> Signed-off-by: Aaron Bauman gentoo.org> dev-cpp/commoncpp2/commoncpp2-1.8.1-r4.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-cpp/commoncpp2/commoncpp2-1.8.1-r4.ebuild b/dev-cpp/commoncpp2/commoncpp2-1.8.1-r4.ebuild index f5f40d898c1..797bc478eb2 100644 --- a/dev-cpp/commoncpp2/commoncpp2-1.8.1-r4.ebuild +++ b/dev-cpp/commoncpp2/commoncpp2-1.8.1-r4.ebuild @@ -11,7 +11,7 @@ HOMEPAGE="https://www.gnu.org/software/commoncpp/" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="debug doc examples ipv6 gnutls ssl static-libs" +IUSE="debug doc examples gnutls ipv6 libressl ssl static-libs" RDEPEND=" sys-libs/zlib @@ -20,7 +20,10 @@ RDEPEND=" dev-libs/libgcrypt:0= net-libs/gnutls:= ) - !gnutls? ( dev-libs/openssl:0= ) + !gnutls? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + ) )" DEPEND="${RDEPEND} doc? ( >=app-doc/doxygen-1.3.6 )"