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 215591396D9 for ; Thu, 19 Oct 2017 19:03:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74BE2E0C5F; Thu, 19 Oct 2017 19:03:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 5540BE0C5F for ; Thu, 19 Oct 2017 19:03:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 79E4C33BF0B for ; Thu, 19 Oct 2017 19:03:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BDF3C313 for ; Thu, 19 Oct 2017 19:03:09 +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: <1508439677.69a3c5b32e5b14954c9968e20a93a8b1fe3c7331.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-misc/kio-gdrive/ X-VCS-Repository: proj/kde X-VCS-Files: kde-misc/kio-gdrive/kio-gdrive-9999.ebuild X-VCS-Directories: kde-misc/kio-gdrive/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 69a3c5b32e5b14954c9968e20a93a8b1fe3c7331 X-VCS-Branch: master Date: Thu, 19 Oct 2017 19:03:09 +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-Archives-Salt: 67bd445f-59cc-4a68-94cb-97d3e6587211 X-Archives-Hash: f1c790a32bc75e8de1feeb040f5d0e2f commit: 69a3c5b32e5b14954c9968e20a93a8b1fe3c7331 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Oct 19 19:01:17 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Oct 19 19:01:17 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=69a3c5b3 kde-misc/kio-gdrive: Fix USE=-handbook, add missing RDEPEND Reported-by: Valeriy Malov gmail.com> Gentoo-bug: 633810 Package-Manager: Portage-2.3.11, Repoman-2.3.3 kde-misc/kio-gdrive/kio-gdrive-9999.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/kde-misc/kio-gdrive/kio-gdrive-9999.ebuild b/kde-misc/kio-gdrive/kio-gdrive-9999.ebuild index 9cf82460dd..ec7b286753 100644 --- a/kde-misc/kio-gdrive/kio-gdrive-9999.ebuild +++ b/kde-misc/kio-gdrive/kio-gdrive-9999.ebuild @@ -3,7 +3,7 @@ EAPI=6 -KDE_HANDBOOK="true" +KDE_HANDBOOK="forceoptional" KDE_TEST="optional" inherit kde5 @@ -17,7 +17,7 @@ fi IUSE="+kaccounts" -RDEPEND=" +COMMON_DEPEND=" $(add_frameworks_dep kcoreaddons) $(add_frameworks_dep ki18n) $(add_frameworks_dep kio) @@ -27,11 +27,14 @@ RDEPEND=" kaccounts? ( $(add_kdeapps_dep kaccounts-integration) ) !kaccounts? ( dev-libs/qtkeychain:=[qt5(+)] ) " -DEPEND="${RDEPEND} +DEPEND="${COMMON_DEPEND} $(add_qt_dep qtgui) $(add_qt_dep qtnetwork) dev-util/intltool " +RDEPEND="${COMMON_DEPEND} + kaccounts? ( $(add_kdeapps_dep kaccounts-providers) ) +" DOCS=( README.md )