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 BEA58138334 for ; Fri, 28 Sep 2018 10:05:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D620AE0A02; Fri, 28 Sep 2018 10:05:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 B04C1E0A02 for ; Fri, 28 Sep 2018 10:05:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 F13D2335CC8 for ; Fri, 28 Sep 2018 10:05:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49B3B3C3 for ; Fri, 28 Sep 2018 10:05:16 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1538129103.bc7fa446c66da3e731c77c66eae051a9325e891a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild X-VCS-Directories: x11-plugins/pidgin-telegram/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bc7fa446c66da3e731c77c66eae051a9325e891a X-VCS-Branch: master Date: Fri, 28 Sep 2018 10:05:16 +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: 98576591-be0c-43e9-af55-e81e5d06781e X-Archives-Hash: e1b9d07b0dcec26680351303abeada8a commit: bc7fa446c66da3e731c77c66eae051a9325e891a Author: Stefan Strogin gmail com> AuthorDate: Wed Sep 19 16:12:02 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Sep 28 10:05:03 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc7fa446 x11-plugins/pidgin-telegram: add USE libressl Closes: https://bugs.gentoo.org/666562 Package-Manager: Portage-2.3.49, Repoman-2.3.10 Signed-off-by: Stefan Strogin gmail.com> Signed-off-by: Michał Górny gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/9915 x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild index 90999385581..8292344ef65 100644 --- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild +++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild @@ -10,12 +10,15 @@ SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegr LICENSE="GPL-2+" KEYWORDS="~amd64 ~x86" SLOT="0" -IUSE="gcrypt +nls +webp" +IUSE="gcrypt libressl +nls +webp" RDEPEND="net-im/pidgin sys-libs/zlib:= gcrypt? ( dev-libs/libgcrypt:0= ) - !gcrypt? ( dev-libs/openssl:0= ) + !gcrypt? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + ) nls? ( sys-devel/gettext ) webp? ( media-libs/libwebp:= )"