Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-telegram/
Date: Fri, 28 Sep 2018 10:05:22
Message-Id: 1538129103.bc7fa446c66da3e731c77c66eae051a9325e891a.mgorny@gentoo
1 commit: bc7fa446c66da3e731c77c66eae051a9325e891a
2 Author: Stefan Strogin <stefan.strogin <AT> gmail <DOT> com>
3 AuthorDate: Wed Sep 19 16:12:02 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 28 10:05:03 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc7fa446
7
8 x11-plugins/pidgin-telegram: add USE libressl
9
10 Closes: https://bugs.gentoo.org/666562
11 Package-Manager: Portage-2.3.49, Repoman-2.3.10
12 Signed-off-by: Stefan Strogin <stefan.strogin <AT> gmail.com>
13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
14 Closes: https://github.com/gentoo/gentoo/pull/9915
15
16 x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild | 7 +++++--
17 1 file changed, 5 insertions(+), 2 deletions(-)
18
19 diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild
20 index 90999385581..8292344ef65 100644
21 --- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild
22 +++ b/x11-plugins/pidgin-telegram/pidgin-telegram-1.3.1.ebuild
23 @@ -10,12 +10,15 @@ SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegr
24 LICENSE="GPL-2+"
25 KEYWORDS="~amd64 ~x86"
26 SLOT="0"
27 -IUSE="gcrypt +nls +webp"
28 +IUSE="gcrypt libressl +nls +webp"
29
30 RDEPEND="net-im/pidgin
31 sys-libs/zlib:=
32 gcrypt? ( dev-libs/libgcrypt:0= )
33 - !gcrypt? ( dev-libs/openssl:0= )
34 + !gcrypt? (
35 + !libressl? ( dev-libs/openssl:0= )
36 + libressl? ( dev-libs/libressl:0= )
37 + )
38 nls? ( sys-devel/gettext )
39 webp? ( media-libs/libwebp:= )"