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 833FF13835A for ; Mon, 26 Oct 2020 16:09:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 541FAE08C8; Mon, 26 Oct 2020 16:09:30 +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 3A0C0E08C8 for ; Mon, 26 Oct 2020 16:09:30 +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 489F933BDEF for ; Mon, 26 Oct 2020 16:09:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E3DA53BE for ; Mon, 26 Oct 2020 16:09:27 +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: <1603728557.0cc6f3ae2e063f27f542c31b1317e340a341ef44.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/kmymoney/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/kmymoney/kmymoney-5.1.0.ebuild X-VCS-Directories: app-office/kmymoney/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0cc6f3ae2e063f27f542c31b1317e340a341ef44 X-VCS-Branch: master Date: Mon, 26 Oct 2020 16:09:27 +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: 6af90c1a-ec5e-4141-b295-907b13f66450 X-Archives-Hash: 36e833a7cefe6fdc2d878e245b44c585 commit: 0cc6f3ae2e063f27f542c31b1317e340a341ef44 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Sep 17 17:31:41 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Oct 26 16:09:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cc6f3ae app-office/kmymoney: Drop IUSE=webkit kdewebkit--, qtwebkit-- Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Andreas Sturmlechner gentoo.org> app-office/kmymoney/kmymoney-5.1.0.ebuild | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/app-office/kmymoney/kmymoney-5.1.0.ebuild b/app-office/kmymoney/kmymoney-5.1.0.ebuild index b4054dec610..d953ee08b6b 100644 --- a/app-office/kmymoney/kmymoney-5.1.0.ebuild +++ b/app-office/kmymoney/kmymoney-5.1.0.ebuild @@ -22,7 +22,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" @@ -40,6 +40,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 @@ -74,11 +75,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 @@ -100,6 +96,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) @@ -109,7 +106,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) )