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 437921396D0 for ; Sat, 2 Sep 2017 09:40:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2CBEE0E1A; Sat, 2 Sep 2017 09:40:33 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 8294DE0E1A for ; Sat, 2 Sep 2017 09:40:33 +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 6B0BF34164B for ; Sat, 2 Sep 2017 09:40:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6569D8B35 for ; Sat, 2 Sep 2017 09:40:28 +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: <1504345204.5518afd378820d36d1b57d2c8480d5f8b782d91f.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-misc/kmarkdownwebview/ X-VCS-Repository: proj/kde X-VCS-Files: kde-misc/kmarkdownwebview/kmarkdownwebview-9999.ebuild X-VCS-Directories: kde-misc/kmarkdownwebview/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 5518afd378820d36d1b57d2c8480d5f8b782d91f X-VCS-Branch: master Date: Sat, 2 Sep 2017 09:40:28 +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: b8c8e953-71da-4b03-b732-b35b24fe7ecc X-Archives-Hash: b87afbc8aad82a44337ec947609da09e commit: 5518afd378820d36d1b57d2c8480d5f8b782d91f Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Sep 2 09:39:29 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Sep 2 09:40:04 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=5518afd3 kde-misc/kmarkdownwebview: Fix DEPENDs, build switch Upstream commit 6debff938cf625a8bc152ad43776bb1b18bd3fad Package-Manager: Portage-2.3.8, Repoman-2.3.3 kde-misc/kmarkdownwebview/kmarkdownwebview-9999.ebuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/kde-misc/kmarkdownwebview/kmarkdownwebview-9999.ebuild b/kde-misc/kmarkdownwebview/kmarkdownwebview-9999.ebuild index b9d84f8ecf..b98f39eaa0 100644 --- a/kde-misc/kmarkdownwebview/kmarkdownwebview-9999.ebuild +++ b/kde-misc/kmarkdownwebview/kmarkdownwebview-9999.ebuild @@ -16,21 +16,22 @@ IUSE="webkit" DEPEND=" $(add_frameworks_dep kconfigwidgets) $(add_frameworks_dep kcoreaddons) - $(add_frameworks_dep kparts) $(add_frameworks_dep ki18n) $(add_frameworks_dep kparts) $(add_frameworks_dep kxmlgui) $(add_qt_dep qtgui) - $(add_qt_dep qtwebchannel) $(add_qt_dep qtwidgets) webkit? ( $(add_qt_dep qtwebkit) ) - !webkit? ( $(add_qt_dep qtwebengine 'widgets') ) + !webkit? ( + $(add_qt_dep qtwebchannel) + $(add_qt_dep qtwebengine 'widgets') + ) " RDEPEND="${DEPEND}" src_configure() { local mycmakeargs=( - -DUSE_WEBKIT=$(usex webkit) + -DUSE_QTWEBKIT=$(usex webkit) ) kde5_src_configure