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 DD00F138334 for ; Thu, 21 Feb 2019 11:15:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD939E0844; Thu, 21 Feb 2019 11:15:17 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 B127EE0844 for ; Thu, 21 Feb 2019 11:15:17 +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 A3C9C335D15 for ; Thu, 21 Feb 2019 11:15:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ACBAF50D for ; Thu, 21 Feb 2019 11:15:13 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1550747692.f74b0697481c24c394cf0779fb1c0ac68d5fb43a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/srt/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/srt/srt-9999.ebuild X-VCS-Directories: net-libs/srt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f74b0697481c24c394cf0779fb1c0ac68d5fb43a X-VCS-Branch: master Date: Thu, 21 Feb 2019 11:15:13 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0a8ce23b-b5d4-419d-a8df-97b42d069c34 X-Archives-Hash: 8e3e8ac2be0d47eaa890344d47141c42 commit: f74b0697481c24c394cf0779fb1c0ac68d5fb43a Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Feb 21 11:14:52 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Feb 21 11:14:52 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f74b0697 net-libs/srt: Fix DEPENDs Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/srt/srt-9999.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/net-libs/srt/srt-9999.ebuild b/net-libs/srt/srt-9999.ebuild index 2de86652d52..436354c1ae7 100644 --- a/net-libs/srt/srt-9999.ebuild +++ b/net-libs/srt/srt-9999.ebuild @@ -20,17 +20,16 @@ LICENSE="LGPL-2.1" SLOT="0" IUSE="gnutls libressl test" -BDEPEND=" - test? ( dev-cpp/gtest ) -" -DEPEND=" +RDEPEND=" gnutls? ( net-libs/gnutls:=[${MULTILIB_USEDEP}] ) !gnutls? ( !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] ) libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] ) ) " -RDEPEND="${DEPEND}" +DEPEND="${RDEPEND} + test? ( dev-cpp/gtest ) +" RESTRICT="!test? ( test )"