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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F1EC1158015 for ; Thu, 28 Dec 2023 13:51:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D5432BC03B; Thu, 28 Dec 2023 13:51:01 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0F5772BC03B for ; Thu, 28 Dec 2023 13:51:01 +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 F402833FD3F for ; Thu, 28 Dec 2023 13:50:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3980CEE8 for ; Thu, 28 Dec 2023 13:50:58 +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: <1703771444.3e9deadaabae4c024e334d4c4a80c3099f182d16.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.0.1.ebuild X-VCS-Directories: app-emulation/86Box/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 3e9deadaabae4c024e334d4c4a80c3099f182d16 X-VCS-Branch: master Date: Thu, 28 Dec 2023 13:50: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: 2e6128bc-5435-4f18-a7b1-b18c5a0e0121 X-Archives-Hash: 7c5dedc98716d0bcdaa50dbe41b069fa commit: 3e9deadaabae4c024e334d4c4a80c3099f182d16 Author: Conrad Kostecki gentoo org> AuthorDate: Thu Dec 28 13:49:42 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu Dec 28 13:50:44 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e9deada app-emulation/86Box: add qt6 support Signed-off-by: Conrad Kostecki gentoo.org> .../86Box/{86Box-4.0.1.ebuild => 86Box-4.0.1-r1.ebuild} | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/app-emulation/86Box/86Box-4.0.1.ebuild b/app-emulation/86Box/86Box-4.0.1-r1.ebuild similarity index 88% rename from app-emulation/86Box/86Box-4.0.1.ebuild rename to app-emulation/86Box/86Box-4.0.1-r1.ebuild index e7aba1c39380..cc978ae05ad0 100644 --- a/app-emulation/86Box/86Box-4.0.1.ebuild +++ b/app-emulation/86Box/86Box-4.0.1-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}. LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64" -IUSE="dinput experimental +fluidsynth +munt new-dynarec +openal +qt5 +threads" +IUSE="dinput experimental +fluidsynth +munt new-dynarec +openal qt5 +qt6 +threads" DEPEND=" app-emulation/faudio @@ -25,6 +25,7 @@ DEPEND=" net-libs/libslirp sys-libs/zlib qt5? ( x11-libs/libXi ) + qt6? ( x11-libs/libXi ) " RDEPEND=" @@ -41,6 +42,11 @@ RDEPEND=" dev-qt/qtwidgets:5 kde-frameworks/extra-cmake-modules ) + qt6? ( + dev-qt/qtbase:6[gui,network,opengl,widgets] + dev-qt/qttranslations:6 + kde-frameworks/extra-cmake-modules + ) " BDEPEND="virtual/pkgconfig" @@ -64,8 +70,9 @@ src_configure() { -DOPENAL="$(usex openal)" -DPREFER_STATIC="OFF" -DRTMIDI="ON" - -DQT="$(usex qt5)" + -DQT="$(usex qt5 'ON' $(usex qt6))" -DRELEASE="ON" + -DUSE_QT6="$(usex qt6)" ) cmake_src_configure