From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1026614-garchives=archives.gentoo.org@lists.gentoo.org>
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 87E29138330
	for <garchives@archives.gentoo.org>; Sun, 27 May 2018 18:02:20 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 609AFE097C;
	Sun, 27 May 2018 18:02:19 +0000 (UTC)
Received: from smtp.gentoo.org (mail.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 360A3E097D
	for <gentoo-commits@lists.gentoo.org>; Sun, 27 May 2018 18:02:19 +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 2931C335CAD
	for <gentoo-commits@lists.gentoo.org>; Sun, 27 May 2018 18:02:18 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DF232B2
	for <gentoo-commits@lists.gentoo.org>; Sun, 27 May 2018 18:02:15 +0000 (UTC)
From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" <pacho@gentoo.org>
Message-ID: <1527444128.1b0f3a57ea25a4455299695cb49a9b49097b7dba.pacho@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-pda/libimobiledevice/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-pda/libimobiledevice/libimobiledevice-1.2.0-r1.ebuild
X-VCS-Directories: app-pda/libimobiledevice/
X-VCS-Committer: pacho
X-VCS-Committer-Name: Pacho Ramos
X-VCS-Revision: 1b0f3a57ea25a4455299695cb49a9b49097b7dba
X-VCS-Branch: master
Date: Sun, 27 May 2018 18:02:15 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 71e71888-b15c-468b-8dde-3eda83782cf9
X-Archives-Hash: 82c6a7bec5292cab0728d6078e2a4e9a

commit:     1b0f3a57ea25a4455299695cb49a9b49097b7dba
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun May 27 18:01:26 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun May 27 18:02:08 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b0f3a57

app-pda/libimobiledevice: Support libressl (#593272)

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 app-pda/libimobiledevice/libimobiledevice-1.2.0-r1.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/app-pda/libimobiledevice/libimobiledevice-1.2.0-r1.ebuild b/app-pda/libimobiledevice/libimobiledevice-1.2.0-r1.ebuild
index aa144488928..19d56287cf4 100644
--- a/app-pda/libimobiledevice/libimobiledevice-1.2.0-r1.ebuild
+++ b/app-pda/libimobiledevice/libimobiledevice-1.2.0-r1.ebuild
@@ -21,7 +21,7 @@ LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0/6" # based on SONAME of libimobiledevice.so
 
 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-IUSE="gnutls python static-libs"
+IUSE="gnutls libressl python static-libs"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 RDEPEND="
@@ -31,7 +31,9 @@ RDEPEND="
 		dev-libs/libgcrypt:0
 		>=dev-libs/libtasn1-1.1
 		>=net-libs/gnutls-2.2.0 )
-	!gnutls? ( dev-libs/openssl:0= )
+	!gnutls? (
+		!libressl? ( dev-libs/openssl:0= )
+		libressl? ( dev-libs/libressl:0= ) )
 	python? (
 		${PYTHON_DEPS}
 		app-pda/libplist[python(-),${PYTHON_USEDEP}] )