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 72B811581C1 for ; Sun, 7 Jul 2024 20:42:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FF0EE2B01; Sun, 7 Jul 2024 20:42:05 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5EB42E2B01 for ; Sun, 7 Jul 2024 20:42:05 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4945B335C96 for ; Sun, 7 Jul 2024 20:42:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63D391DF0 for ; Sun, 7 Jul 2024 20:42:02 +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: <1720384759.6c2bd6347954123d91cbaa3b8208a690a83d79b3.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: media-libs/phonon/ X-VCS-Repository: proj/kde X-VCS-Files: media-libs/phonon/phonon-9999.ebuild X-VCS-Directories: media-libs/phonon/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6c2bd6347954123d91cbaa3b8208a690a83d79b3 X-VCS-Branch: master Date: Sun, 7 Jul 2024 20:42:02 +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: be5d5143-e495-4a44-9b54-9fc1111d6a75 X-Archives-Hash: 82355ba28ba25a7db9baef104b1b1989 commit: 6c2bd6347954123d91cbaa3b8208a690a83d79b3 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jul 7 20:32:41 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jul 7 20:39:19 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=6c2bd634 media-libs/phonon: Disable PHONON_BUILD_SETTINGS if USE=minimal phononsettings binary segfaults without any backend configured. Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/phonon/phonon-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/phonon/phonon-9999.ebuild b/media-libs/phonon/phonon-9999.ebuild index dc2e560289..dde73a34b7 100644 --- a/media-libs/phonon/phonon-9999.ebuild +++ b/media-libs/phonon/phonon-9999.ebuild @@ -73,12 +73,12 @@ src_configure() { if [[ ${MULTIBUILD_VARIANT} == qt6 ]]; then mycmakeargs+=( -DPHONON_BUILD_QT5=OFF - -DPHONON_BUILD_SETTINGS=ON + -DPHONON_BUILD_SETTINGS=$(usex !minimal) ) else mycmakeargs+=( -DPHONON_BUILD_QT6=OFF - -DPHONON_BUILD_SETTINGS=$(usex !qt6) + -DPHONON_BUILD_SETTINGS=$(usex !qt6 $(usex !minimal ON OFF) OFF) ) fi