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 53C54158004 for ; Sun, 17 Mar 2024 12:59:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 988ABE299F; Sun, 17 Mar 2024 12:59:30 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 6ED60E299F for ; Sun, 17 Mar 2024 12:59:30 +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 B3E2133BF41 for ; Sun, 17 Mar 2024 12:59:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49F3FDBD for ; Sun, 17 Mar 2024 12:59:28 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1710680344.88f503e81b931d4a32a153b1be14ac77aeb064e8.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/86Box/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/86Box/86Box-4.0.1-r1.ebuild app-emulation/86Box/86Box-4.1.ebuild X-VCS-Directories: app-emulation/86Box/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 88f503e81b931d4a32a153b1be14ac77aeb064e8 X-VCS-Branch: master Date: Sun, 17 Mar 2024 12:59:28 +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: 601d9a7d-a8dd-4861-adbc-80a91d937abf X-Archives-Hash: 31eb7c1f4d05eb53a20b57cfac5d3668 commit: 88f503e81b931d4a32a153b1be14ac77aeb064e8 Author: Conrad Kostecki gentoo org> AuthorDate: Sun Mar 17 12:57:55 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Mar 17 12:59:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88f503e8 app-emulation/86Box: fix unused cmake variable Closes: https://bugs.gentoo.org/927194 Signed-off-by: Conrad Kostecki gentoo.org> app-emulation/86Box/86Box-4.0.1-r1.ebuild | 2 +- app-emulation/86Box/86Box-4.1.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-emulation/86Box/86Box-4.0.1-r1.ebuild b/app-emulation/86Box/86Box-4.0.1-r1.ebuild index 16aac070243a..9945e8bf8d6e 100644 --- a/app-emulation/86Box/86Box-4.0.1-r1.ebuild +++ b/app-emulation/86Box/86Box-4.0.1-r1.ebuild @@ -74,7 +74,7 @@ src_configure() { -DRTMIDI="ON" -DQT="$(usex qt5 'ON' $(usex qt6))" -DRELEASE="ON" - -DUSE_QT6="$(usex qt6)" + $(usex qt6 '-DUSE_QT6=ON') ) cmake_src_configure diff --git a/app-emulation/86Box/86Box-4.1.ebuild b/app-emulation/86Box/86Box-4.1.ebuild index 7937fddca15e..45d6114f04fe 100644 --- a/app-emulation/86Box/86Box-4.1.ebuild +++ b/app-emulation/86Box/86Box-4.1.ebuild @@ -72,7 +72,7 @@ src_configure() { -DRTMIDI="ON" -DQT="$(usex qt5 'ON' $(usex qt6))" -DRELEASE="ON" - -DUSE_QT6="$(usex qt6)" + $(usex qt6 '-DUSE_QT6=ON') ) cmake_src_configure