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 3F5D713835A for ; Sun, 9 Aug 2020 09:45:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69A70E0907; Sun, 9 Aug 2020 09:45:24 +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 4D5CBE0907 for ; Sun, 9 Aug 2020 09:45:24 +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 17FD434EE76 for ; Sun, 9 Aug 2020 09:45:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F6782F3 for ; Sun, 9 Aug 2020 09:45:21 +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: <1596966238.e20605f70b470c514260ed12815f2543c134eb0a.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: app-office/kmymoney/ X-VCS-Repository: proj/kde X-VCS-Files: app-office/kmymoney/kmymoney-9999.ebuild X-VCS-Directories: app-office/kmymoney/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e20605f70b470c514260ed12815f2543c134eb0a X-VCS-Branch: master Date: Sun, 9 Aug 2020 09:45:21 +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: 00510414-a820-4251-a2ea-64ee24511892 X-Archives-Hash: 8895702ad9b5d348c345f10f811950c1 commit: e20605f70b470c514260ed12815f2543c134eb0a Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Aug 9 09:43:58 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Aug 9 09:43:58 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=e20605f7 app-office/kmymoney: Drop IUSE=webkit kdewebkit--, qtwebkit-- Package-Manager: Portage-3.0.2, Repoman-2.3.23 Signed-off-by: Andreas Sturmlechner gentoo.org> app-office/kmymoney/kmymoney-9999.ebuild | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/app-office/kmymoney/kmymoney-9999.ebuild b/app-office/kmymoney/kmymoney-9999.ebuild index 1d4fbffa3a..779683f18e 100644 --- a/app-office/kmymoney/kmymoney-9999.ebuild +++ b/app-office/kmymoney/kmymoney-9999.ebuild @@ -21,7 +21,7 @@ fi LICENSE="GPL-2" SLOT="5" -IUSE="activities addressbook calendar hbci holidays quotes webkit" +IUSE="activities addressbook calendar hbci holidays quotes" [[ ${KDE_BUILD_TYPE} = live ]] && IUSE+=" experimental" BDEPEND="virtual/pkgconfig" @@ -39,6 +39,7 @@ COMMON_DEPEND=" >=dev-qt/qtprintsupport-${QTMIN}:5 >=dev-qt/qtsql-${QTMIN}:5 >=dev-qt/qtsvg-${QTMIN}:5 + >=dev-qt/qtwebengine-${QTMIN}:5[widgets] >=dev-qt/qtwidgets-${QTMIN}:5 >=dev-qt/qtxml-${QTMIN}:5 >=kde-frameworks/karchive-${KFMIN}:5 @@ -73,11 +74,6 @@ COMMON_DEPEND=" >=sys-libs/gwenhywfar-5.1.2:=[qt5] ) holidays? ( >=kde-frameworks/kholidays-${KFMIN}:5 ) - webkit? ( - >=dev-qt/qtwebkit-5.212.0_pre20180120:5 - >=kde-frameworks/kdewebkit-${KFMIN}:5 - ) - !webkit? ( >=dev-qt/qtwebengine-${QTMIN}:5[widgets] ) " DEPEND="${COMMON_DEPEND} dev-libs/boost @@ -99,6 +95,7 @@ pkg_setup() { src_configure() { local mycmakeargs=( -DENABLE_OFXIMPORTER=ON + -DENABLE_WEBENGINE=ON -DENABLE_WEBOOB=OFF -DUSE_QT_DESIGNER=OFF $(cmake_use_find_package activities KF5Activities) @@ -108,7 +105,6 @@ src_configure() { -DENABLE_LIBICAL=$(usex calendar) -DENABLE_KBANKING=$(usex hbci) $(cmake_use_find_package holidays KF5Holidays) - -DENABLE_WEBENGINE=$(usex !webkit) ) [[ ${KDE_BUILD_TYPE} = live ]] && mycmakeargs+=( -DENABLE_UNFINISHEDFEATURES=$(usex experimental) )