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 E146915806E for ; Tue, 30 May 2023 18:26:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2800DE0A49; Tue, 30 May 2023 18:26:36 +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 0560DE0A49 for ; Tue, 30 May 2023 18:26:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 0AD98340B53 for ; Tue, 30 May 2023 18:26:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 971ECA6F for ; Tue, 30 May 2023 18:26:33 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1685471181.ca6cb743d24f4aed6d18daf01d566f37247b4787.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/qjackctl/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/qjackctl/qjackctl-0.9.10.ebuild media-sound/qjackctl/qjackctl-9999.ebuild X-VCS-Directories: media-sound/qjackctl/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: ca6cb743d24f4aed6d18daf01d566f37247b4787 X-VCS-Branch: master Date: Tue, 30 May 2023 18:26:33 +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: f4035bc9-ed5c-4e66-93ff-db1b0e9b2575 X-Archives-Hash: c618b1e578065b5c3673f32d9ddfa38a commit: ca6cb743d24f4aed6d18daf01d566f37247b4787 Author: Alexey Sokolov asokolov org> AuthorDate: Tue May 30 18:26:21 2023 +0000 Commit: David Seifert gentoo org> CommitDate: Tue May 30 18:26:21 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca6cb743 media-sound/qjackctl: fix build when qt6 is installed Closes: https://github.com/gentoo/gentoo/pull/31070 Closes: https://bugs.gentoo.org/880049 Signed-off-by: Alexey Sokolov asokolov.org> Signed-off-by: David Seifert gentoo.org> media-sound/qjackctl/qjackctl-0.9.10.ebuild | 1 + media-sound/qjackctl/qjackctl-9999.ebuild | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/media-sound/qjackctl/qjackctl-0.9.10.ebuild b/media-sound/qjackctl/qjackctl-0.9.10.ebuild index a19336e1aa98..e502a0385dfa 100644 --- a/media-sound/qjackctl/qjackctl-0.9.10.ebuild +++ b/media-sound/qjackctl/qjackctl-0.9.10.ebuild @@ -41,6 +41,7 @@ src_configure() { -DCONFIG_DBUS=$(usex dbus 1 0) -DCONFIG_DEBUG=$(usex debug 1 0) -DCONFIG_PORTAUDIO=$(usex portaudio 1 0) + -DCONFIG_QT6=no ) cmake_src_configure } diff --git a/media-sound/qjackctl/qjackctl-9999.ebuild b/media-sound/qjackctl/qjackctl-9999.ebuild index ba619f94a01f..8178b9d194f8 100644 --- a/media-sound/qjackctl/qjackctl-9999.ebuild +++ b/media-sound/qjackctl/qjackctl-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -37,6 +37,7 @@ src_configure() { -DCONFIG_DBUS=$(usex dbus 1 0) -DCONFIG_DEBUG=$(usex debug 1 0) -DCONFIG_PORTAUDIO=$(usex portaudio 1 0) + -DCONFIG_QT6=no ) cmake_src_configure }