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 1C790138330 for ; Sat, 26 May 2018 16:56:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3212DE09B4; Sat, 26 May 2018 16:56:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 08FA7E09B4 for ; Sat, 26 May 2018 16:56:20 +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 CD4A6335C77 for ; Sat, 26 May 2018 16:56:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 67539296 for ; Sat, 26 May 2018 16:56:17 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1527353516.d17e770c9f3102743928e493d3ccc9f73f3f0cf6.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-voip/telepathy-gabble/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-voip/telepathy-gabble/telepathy-gabble-0.18.4.ebuild X-VCS-Directories: net-voip/telepathy-gabble/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: d17e770c9f3102743928e493d3ccc9f73f3f0cf6 X-VCS-Branch: master Date: Sat, 26 May 2018 16:56:17 +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-Archives-Salt: 574da388-91ff-4a86-bc4b-bd8354c0e6e1 X-Archives-Hash: 811470251da4c26be263649c30f899c1 commit: d17e770c9f3102743928e493d3ccc9f73f3f0cf6 Author: Aaron Bauman gentoo org> AuthorDate: Fri May 25 12:38:49 2018 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Sat May 26 16:51:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d17e770c net-voip/telepathy-gabble: add LibreSSL support net-voip/telepathy-gabble/telepathy-gabble-0.18.4.ebuild | 9 ++++++--- 1 file 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 b6a3ce07eea..b20b0f2d4ec 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 )