Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/srt/
Date: Thu, 21 Feb 2019 11:15:18
Message-Id: 1550747692.f74b0697481c24c394cf0779fb1c0ac68d5fb43a.asturm@gentoo
1 commit: f74b0697481c24c394cf0779fb1c0ac68d5fb43a
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 21 11:14:52 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 21 11:14:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f74b0697
7
8 net-libs/srt: Fix DEPENDs
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 net-libs/srt/srt-9999.ebuild | 9 ++++-----
14 1 file changed, 4 insertions(+), 5 deletions(-)
15
16 diff --git a/net-libs/srt/srt-9999.ebuild b/net-libs/srt/srt-9999.ebuild
17 index 2de86652d52..436354c1ae7 100644
18 --- a/net-libs/srt/srt-9999.ebuild
19 +++ b/net-libs/srt/srt-9999.ebuild
20 @@ -20,17 +20,16 @@ LICENSE="LGPL-2.1"
21 SLOT="0"
22 IUSE="gnutls libressl test"
23
24 -BDEPEND="
25 - test? ( dev-cpp/gtest )
26 -"
27 -DEPEND="
28 +RDEPEND="
29 gnutls? ( net-libs/gnutls:=[${MULTILIB_USEDEP}] )
30 !gnutls? (
31 !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
32 libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] )
33 )
34 "
35 -RDEPEND="${DEPEND}"
36 +DEPEND="${RDEPEND}
37 + test? ( dev-cpp/gtest )
38 +"
39
40 RESTRICT="!test? ( test )"