diff options
author | Aaron Bauman <bman@gentoo.org> | 2018-05-25 08:38:49 -0400 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2018-05-26 19:51:56 +0300 |
commit | d17e770c9f3102743928e493d3ccc9f73f3f0cf6 (patch) | |
tree | 06e565919c5efc2ab30882f4a4e74ef9b622cb14 /net-voip | |
parent | dev-lang/rakudo: Bump (diff) | |
download | gentoo-d17e770c9f3102743928e493d3ccc9f73f3f0cf6.tar.gz gentoo-d17e770c9f3102743928e493d3ccc9f73f3f0cf6.tar.bz2 gentoo-d17e770c9f3102743928e493d3ccc9f73f3f0cf6.zip |
net-voip/telepathy-gabble: add LibreSSL support
Diffstat (limited to 'net-voip')
-rw-r--r-- | net-voip/telepathy-gabble/telepathy-gabble-0.18.4.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/net-voip/telepathy-gabble/telepathy-gabble-0.18.4.ebuild b/net-voip/telepathy-gabble/telepathy-gabble-0.18.4.ebuild index b6a3ce07eea8..b20b0f2d4ecb 100644 --- a/net-voip/telepathy-gabble/telepathy-gabble-0.18.4.ebuild +++ b/net-voip/telepathy-gabble/telepathy-gabble-0.18.4.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI=6 # Python is used during build for some scripted source files generation (and twisted tests) PYTHON_COMPAT=( python2_7 ) @@ -14,7 +14,7 @@ SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-linux" -IUSE="gnutls +jingle plugins test" +IUSE="gnutls +jingle libressl plugins test" # Prevent false positives due nested configure QA_CONFIGURE_OPTIONS=".*" @@ -33,7 +33,10 @@ RDEPEND=" dev-db/sqlite:3 gnutls? ( >=net-libs/gnutls-2.10.2 ) - !gnutls? ( >=dev-libs/openssl-0.9.8g:0[-bindist] ) + !gnutls? ( + libressl? ( dev-libs/libressl:0= ) + !libressl? ( >=dev-libs/openssl-0.9.8g:0=[-bindist] ) + ) jingle? ( >=net-libs/libsoup-2.42 >=net-libs/libnice-0.0.11 ) |