Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-voip/telepathy-gabble/
Date: Sat, 26 May 2018 16:56:23
Message-Id: 1527353516.d17e770c9f3102743928e493d3ccc9f73f3f0cf6.leio@gentoo
1 commit: d17e770c9f3102743928e493d3ccc9f73f3f0cf6
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 25 12:38:49 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat May 26 16:51:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d17e770c
7
8 net-voip/telepathy-gabble: add LibreSSL support
9
10 net-voip/telepathy-gabble/telepathy-gabble-0.18.4.ebuild | 9 ++++++---
11 1 file changed, 6 insertions(+), 3 deletions(-)
12
13 diff --git a/net-voip/telepathy-gabble/telepathy-gabble-0.18.4.ebuild b/net-voip/telepathy-gabble/telepathy-gabble-0.18.4.ebuild
14 index b6a3ce07eea..b20b0f2d4ec 100644
15 --- a/net-voip/telepathy-gabble/telepathy-gabble-0.18.4.ebuild
16 +++ b/net-voip/telepathy-gabble/telepathy-gabble-0.18.4.ebuild
17 @@ -1,7 +1,7 @@
18 # Copyright 1999-2017 Gentoo Foundation
19 # Distributed under the terms of the GNU General Public License v2
20
21 -EAPI="6"
22 +EAPI=6
23 # Python is used during build for some scripted source files generation (and twisted tests)
24 PYTHON_COMPAT=( python2_7 )
25
26 @@ -14,7 +14,7 @@ SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
27 LICENSE="LGPL-2.1"
28 SLOT="0"
29 KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-linux"
30 -IUSE="gnutls +jingle plugins test"
31 +IUSE="gnutls +jingle libressl plugins test"
32
33 # Prevent false positives due nested configure
34 QA_CONFIGURE_OPTIONS=".*"
35 @@ -33,7 +33,10 @@ RDEPEND="
36 dev-db/sqlite:3
37
38 gnutls? ( >=net-libs/gnutls-2.10.2 )
39 - !gnutls? ( >=dev-libs/openssl-0.9.8g:0[-bindist] )
40 + !gnutls? (
41 + libressl? ( dev-libs/libressl:0= )
42 + !libressl? ( >=dev-libs/openssl-0.9.8g:0=[-bindist] )
43 + )
44 jingle? (
45 >=net-libs/libsoup-2.42
46 >=net-libs/libnice-0.0.11 )