Gentoo Archives: gentoo-commits

From: Adrian Schollmeyer <nex+b-g-o@××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-libs/ixwebsocket/
Date: Mon, 20 Sep 2021 14:39:40
Message-Id: 1632148770.ecaf6a5d1cee773c8c67a15b1f19b5cfa5e89ca7.nex+b-g-o@gentoo
1 commit: ecaf6a5d1cee773c8c67a15b1f19b5cfa5e89ca7
2 Author: Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
3 AuthorDate: Mon Sep 20 14:39:30 2021 +0000
4 Commit: Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
5 CommitDate: Mon Sep 20 14:39:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ecaf6a5d
7
8 net-libs/ixwebsocket: Add missing dependencies
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Adrian Schollmeyer <nex+b-g-o <AT> nexadn.de>
12
13 net-libs/ixwebsocket/ixwebsocket-11.2.8.ebuild | 15 ++++++++++++---
14 1 file changed, 12 insertions(+), 3 deletions(-)
15
16 diff --git a/net-libs/ixwebsocket/ixwebsocket-11.2.8.ebuild b/net-libs/ixwebsocket/ixwebsocket-11.2.8.ebuild
17 index 43bcde917..a31363a8c 100644
18 --- a/net-libs/ixwebsocket/ixwebsocket-11.2.8.ebuild
19 +++ b/net-libs/ixwebsocket/ixwebsocket-11.2.8.ebuild
20 @@ -17,17 +17,26 @@ KEYWORDS="~amd64 ~x86"
21 IUSE="+ssl test zlib ws"
22
23 DEPEND="
24 - sys-libs/zlib:=
25 -
26 + ssl? (
27 + dev-libs/openssl:=
28 + )
29 ws? (
30 >=dev-libs/spdlog-1.8.0:=
31 )
32 + zlib? (
33 + sys-libs/zlib:=
34 + )
35 test? (
36 >=dev-libs/spdlog-1.8.0:=
37 )
38 "
39 RDEPEND="
40 - sys-libs/zlib:=
41 + ssl? (
42 + dev-libs/openssl:=
43 + )
44 + zlib? (
45 + sys-libs/zlib:=
46 + )
47 "
48 BDEPEND=""