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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 32163158086 for ; Fri, 22 Oct 2021 22:51:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 205F6E086A; Fri, 22 Oct 2021 22:51:42 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C4A4E086A for ; Fri, 22 Oct 2021 22:51:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0A96D3431DA for ; Fri, 22 Oct 2021 22:51:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 60D69168 for ; Fri, 22 Oct 2021 22:51:39 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1634942949.4fbc508dac37ab5fbd927cc5ccb6d10f69609728.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/fs-uae/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/fs-uae/fs-uae-3.1.35.ebuild X-VCS-Directories: app-emulation/fs-uae/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 4fbc508dac37ab5fbd927cc5ccb6d10f69609728 X-VCS-Branch: master Date: Fri, 22 Oct 2021 22:51:39 +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: 954668cf-34d2-4da9-9bd4-e9062b121a7f X-Archives-Hash: 2a35c539d85b6d5ba74240f0d4977dd0 commit: 4fbc508dac37ab5fbd927cc5ccb6d10f69609728 Author: James Le Cuirot gentoo org> AuthorDate: Fri Oct 22 22:49:09 2021 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Fri Oct 22 22:49:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fbc508d app-emulation/fs-uae: Add jit USE flag to 3.1.35 This is masked, except on amd64 and x86. Closes: https://bugs.gentoo.org/819540 Signed-off-by: James Le Cuirot gentoo.org> app-emulation/fs-uae/fs-uae-3.1.35.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-emulation/fs-uae/fs-uae-3.1.35.ebuild b/app-emulation/fs-uae/fs-uae-3.1.35.ebuild index be1afebd83d..a643f51dcaa 100644 --- a/app-emulation/fs-uae/fs-uae-3.1.35.ebuild +++ b/app-emulation/fs-uae/fs-uae-3.1.35.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://fs-uae.net/stable/${PV}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" -IUSE="fmv glew" +IUSE="fmv glew +jit" RDEPEND=" dev-libs/glib:2 @@ -71,8 +71,6 @@ src_configure() { --enable-drivesound \ --enable-fdi2raw \ --enable-gfxboard \ - --enable-jit \ - --enable-jit-fpu \ --disable-lua \ --enable-netplay \ --enable-ncr \ @@ -97,6 +95,8 @@ src_configure() { --without-cef \ --with-glad \ --without-qt \ + $(use_enable jit) \ + $(use_enable jit jit-fpu) \ $(use_with fmv libmpeg2) \ $(use_with glew) }