Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/
Date: Fri, 27 Jan 2017 19:14:28
Message-Id: 1485544416.96092c3ed8dd300e3db02cd898cbc85f09f6065f.gokturk@gentoo
1 commit: 96092c3ed8dd300e3db02cd898cbc85f09f6065f
2 Author: Luis Ressel <aranea <AT> aixah <DOT> de>
3 AuthorDate: Thu Jan 19 20:56:43 2017 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 27 19:13:36 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96092c3e
7
8 app-crypt/libu2f-server: Add libressl USE flag
9
10 In my tests, libu2f-server has worked fine with libressl; no patches are
11 necessary.
12
13 app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild | 5 +++--
14 1 file changed, 3 insertions(+), 2 deletions(-)
15
16 diff --git a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
17 index e59d574..6c8eb77 100644
18 --- a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
19 +++ b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild
20 @@ -13,10 +13,11 @@ SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz"
21 LICENSE="BSD-2"
22 SLOT="0"
23 KEYWORDS="~amd64 ~x86"
24 -IUSE="static-libs test"
25 +IUSE="libressl static-libs test"
26
27 RDEPEND="
28 - dev-libs/openssl:0=[${MULTILIB_USEDEP}]
29 + !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
30 + libressl? ( dev-libs/libressl:=[${MULTILIB_USEDEP}] )
31 dev-libs/hidapi[${MULTILIB_USEDEP}]
32 dev-libs/json-c[${MULTILIB_USEDEP}]
33 "