Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-pda/libimobiledevice/
Date: Sun, 27 May 2018 18:02:20
Message-Id: 1527444128.1b0f3a57ea25a4455299695cb49a9b49097b7dba.pacho@gentoo
1 commit: 1b0f3a57ea25a4455299695cb49a9b49097b7dba
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 27 18:01:26 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun May 27 18:02:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b0f3a57
7
8 app-pda/libimobiledevice: Support libressl (#593272)
9
10 Package-Manager: Portage-2.3.38, Repoman-2.3.9
11
12 app-pda/libimobiledevice/libimobiledevice-1.2.0-r1.ebuild | 6 ++++--
13 1 file changed, 4 insertions(+), 2 deletions(-)
14
15 diff --git a/app-pda/libimobiledevice/libimobiledevice-1.2.0-r1.ebuild b/app-pda/libimobiledevice/libimobiledevice-1.2.0-r1.ebuild
16 index aa144488928..19d56287cf4 100644
17 --- a/app-pda/libimobiledevice/libimobiledevice-1.2.0-r1.ebuild
18 +++ b/app-pda/libimobiledevice/libimobiledevice-1.2.0-r1.ebuild
19 @@ -21,7 +21,7 @@ LICENSE="GPL-2+ LGPL-2.1+"
20 SLOT="0/6" # based on SONAME of libimobiledevice.so
21
22 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
23 -IUSE="gnutls python static-libs"
24 +IUSE="gnutls libressl python static-libs"
25 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
26
27 RDEPEND="
28 @@ -31,7 +31,9 @@ RDEPEND="
29 dev-libs/libgcrypt:0
30 >=dev-libs/libtasn1-1.1
31 >=net-libs/gnutls-2.2.0 )
32 - !gnutls? ( dev-libs/openssl:0= )
33 + !gnutls? (
34 + !libressl? ( dev-libs/openssl:0= )
35 + libressl? ( dev-libs/libressl:0= ) )
36 python? (
37 ${PYTHON_DEPS}
38 app-pda/libplist[python(-),${PYTHON_USEDEP}] )