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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8654F158094 for ; Sat, 9 Jul 2022 12:53:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D11AE0874; Sat, 9 Jul 2022 12:53:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0BCC9E0871 for ; Sat, 9 Jul 2022 12:53:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0A628340F22 for ; Sat, 9 Jul 2022 12:53:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6162953B for ; Sat, 9 Jul 2022 12:52:58 +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: <1657371158.ab170b1365c0ffd0f818a7e70ed57b05589e6840.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-misc/kdiff3/ X-VCS-Repository: proj/kde X-VCS-Files: kde-misc/kdiff3/kdiff3-9999.ebuild X-VCS-Directories: kde-misc/kdiff3/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ab170b1365c0ffd0f818a7e70ed57b05589e6840 X-VCS-Branch: master Date: Sat, 9 Jul 2022 12:52:58 +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: 0b9db154-bcac-4fdc-ba1d-ec3a429b0e41 X-Archives-Hash: 7c0b39382cf8cb471fe0b5141fba978d commit: ab170b1365c0ffd0f818a7e70ed57b05589e6840 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jul 9 09:48:34 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jul 9 12:52:38 2022 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=ab170b13 kde-misc/kdiff3: Make sure we don't build against Qt6 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-misc/kdiff3/kdiff3-9999.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/kde-misc/kdiff3/kdiff3-9999.ebuild b/kde-misc/kdiff3/kdiff3-9999.ebuild index d8bee5ee9a..d7952caa80 100644 --- a/kde-misc/kdiff3/kdiff3-9999.ebuild +++ b/kde-misc/kdiff3/kdiff3-9999.ebuild @@ -38,3 +38,10 @@ DEPEND="${COMMON_DEPEND} RDEPEND="${COMMON_DEPEND} sys-apps/diffutils " + +src_configure() { + local mycmakeargs=( + -DBUILD_WITH_QT6=OFF + ) + ecm_src_configure +}