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 C360613933E for ; Mon, 5 Jul 2021 01:25:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BED1CE0822; Mon, 5 Jul 2021 01:25:06 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8BAF4E0822 for ; Mon, 5 Jul 2021 01:25:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7E2BB335C51 for ; Mon, 5 Jul 2021 01:25:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDC9763F for ; Mon, 5 Jul 2021 01:25:03 +0000 (UTC) From: "Samuel Bauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Samuel Bauer" Message-ID: <1625448262.19054dc81c4cddfd929384c2a137874b71fcf3c4.samuel.bauer@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-emulation/arnold/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-emulation/arnold/arnold-20170513.ebuild X-VCS-Directories: app-emulation/arnold/ X-VCS-Committer: samuel.bauer X-VCS-Committer-Name: Samuel Bauer X-VCS-Revision: 19054dc81c4cddfd929384c2a137874b71fcf3c4 X-VCS-Branch: dev Date: Mon, 5 Jul 2021 01:25:03 +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: fcea9d1c-c839-4a47-b079-7d3e118814a4 X-Archives-Hash: 883e6e21f34c80cef5de4d1b13fb3662 commit: 19054dc81c4cddfd929384c2a137874b71fcf3c4 Author: Samuel Bauer yahoo fr> AuthorDate: Mon Jul 5 01:23:38 2021 +0000 Commit: Samuel Bauer yahoo fr> CommitDate: Mon Jul 5 01:24:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=19054dc8 app-emulation/arnold: wxwidgets eclass does not add x11-libs/wxGTK as a dependency Signed-off-by: Samuel Bauer yahoo.fr> app-emulation/arnold/arnold-20170513.ebuild | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app-emulation/arnold/arnold-20170513.ebuild b/app-emulation/arnold/arnold-20170513.ebuild index cfd2fa1e7..6704b1763 100644 --- a/app-emulation/arnold/arnold-20170513.ebuild +++ b/app-emulation/arnold/arnold-20170513.ebuild @@ -9,26 +9,27 @@ inherit cmake desktop wxwidgets DESCRIPTION="Amstrad CPC emulator" HOMEPAGE="http://www.cpctech.org.uk" -SRC_URI="https://cpctech.cpc-live.com/arnsrc.zip -> ${P}.zip" +SRC_URI="http://cpctech.cpc-live.com/arnsrc.zip -> ${P}.zip" LICENSE="GPL-2 LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="inkz80" -DEPEND=" +RDEPEND=" media-libs/libsdl2 virtual/opengl + x11-libs/wxGTK:${WX_GTK_VER} " -RDEPEND="${DEPEND}" +DEPEND="${RDEPEND}" BDEPEND="app-arch/unzip" -S="${WORKDIR}/src" +S=${WORKDIR}/src src_prepare() { setup-wxwidgets sed -i "4421s:=.*$:=wxT(\"/usr/share/${PN}/\");:" arngui/arnguiApp.cpp || die - # Prevent running at 150% of original speed + # Prevent running at 150% sed -i '390s/20000/30000/' arngui/sdl2/SDL2PlatformSpecific.cpp || die cmake_src_prepare }