diff --git a/games-emulation/rmg/files/rmg-0.6.6-mupen64plus-input-raphnetraw-pkgconfig.patch b/games-emulation/rmg/files/rmg-0.6.6-mupen64plus-input-raphnetraw-pkgconfig.patch new file mode 100644 index 00000000000000..0e179046bf406f --- /dev/null +++ b/games-emulation/rmg/files/rmg-0.6.6-mupen64plus-input-raphnetraw-pkgconfig.patch @@ -0,0 +1,59 @@ +https://bugs.gentoo.org/941889 +https://github.com/raphnet/mupen64plus-input-raphnetraw/pull/17 +https://github.com/Rosalie241/RMG/pull/296 +https://github.com/Rosalie241/RMG/pull/297 +https://github.com/Rosalie241/RMG/commit/f6b73b86c6625fa5a268b74b1e36114a5bdd535c +https://github.com/Rosalie241/RMG/commit/69c24b9131909c338b03c48438744b253501146a + +From e8ec98eb7e7ee4b769232ce143af6c6f9cf29bc6 Mon Sep 17 00:00:00 2001 +From: orbea +Date: Sun, 20 Oct 2024 08:59:56 -0700 +Subject: [PATCH 1/2] 3rdParty: don't hard-code pkg-config in + mupen64plus-input-raphnetraw (#296) 3rdParty: improve the hidapi check in + mupen64plus-input-raphnetraw (#297) + +--- + .../projects/unix/Makefile | 22 ++++++++++--------- + 1 file changed, 12 insertions(+), 10 deletions(-) + +diff --git a/Source/3rdParty/mupen64plus-input-raphnetraw/projects/unix/Makefile b/Source/3rdParty/mupen64plus-input-raphnetraw/projects/unix/Makefile +index a2571378..18dcaf19 100644 +--- a/Source/3rdParty/mupen64plus-input-raphnetraw/projects/unix/Makefile ++++ b/Source/3rdParty/mupen64plus-input-raphnetraw/projects/unix/Makefile +@@ -141,6 +141,14 @@ ifeq ($(OS), OSX) + endif + endif + ++# test for essential build dependencies ++ifeq ($(origin PKG_CONFIG), undefined) ++ PKG_CONFIG = $(CROSS_COMPILE)pkg-config ++ ifeq ($(shell which $(PKG_CONFIG) 2>/dev/null),) ++ $(error $(PKG_CONFIG) not found) ++ endif ++endif ++ + ifeq ($(OS), LINUX) + HIDAPI_NAME=hidapi-hidraw + else +@@ -149,17 +157,11 @@ endif + + # test for presence of HIDLIB + ifeq ($(origin HID_CFLAGS) $(origin HID_LDLIBS), undefined undefined) +- HIDAPI_CONFIG = $(CROSS_COMPILE)pkg-config $(HIDAPI_NAME) +- ifeq ($(shell which $(HIDAPI_CONFIG) 2>/dev/null),) +- HIDAPI_CONFIG = $(CROSS_COMPILE)pkg-config $(HIDAPI_NAME) +- ifeq ($(shell which $(HIDAPI_CONFIG) 2>/dev/null),) +- $(error No HIDAPI development libraries found!) +- else +- $(warning Using HIDAPI libraries) +- endif ++ ifeq ($(shell $(PKG_CONFIG) --modversion $(HIDAPI_NAME) 2>/dev/null),) ++ $(error No HIDAPI development libraries found!) + endif +- HID_CFLAGS += $(shell $(HIDAPI_CONFIG) --cflags) +- HID_LDLIBS += $(shell $(HIDAPI_CONFIG) --libs) ++ HID_CFLAGS = $(shell $(PKG_CONFIG) --cflags $(HIDAPI_NAME)) ++ HID_LDLIBS = $(shell $(PKG_CONFIG) --libs $(HIDAPI_NAME)) + endif + CFLAGS += $(HID_CFLAGS) + LDLIBS += $(HID_LDLIBS) diff --git a/games-emulation/rmg/rmg-0.6.6.ebuild b/games-emulation/rmg/rmg-0.6.6.ebuild index 190b349006a3b8..ad1e60c806ea95 100644 --- a/games-emulation/rmg/rmg-0.6.6.ebuild +++ b/games-emulation/rmg/rmg-0.6.6.ebuild @@ -27,7 +27,7 @@ CRATES=" winapi@0.3.9 " -inherit cargo cmake flag-o-matic xdg +inherit cargo cmake flag-o-matic toolchain-funcs xdg MY_PN="${PN^^}" MY_P="${MY_PN}-${PV}" @@ -78,6 +78,8 @@ PATCHES=( "${FILESDIR}"/${PN}-0.5.6-parallel-rdp-standalone-musl.patch # Use pkg-config(1) for SDL2 and don't depend on which(1) "${FILESDIR}"/${P}-mupen64plus-core-sdl-pkgconfig.patch + # https://bugs.gentoo.org/941889 + "${FILESDIR}"/${P}-mupen64plus-input-raphnetraw-pkgconfig.patch ) pkg_setup() { @@ -126,6 +128,7 @@ src_configure() { append-flags -fno-strict-aliasing filter-lto + export PKG_CONFIG="$(tc-getPKG_CONFIG)" export PKG_CONFIG_ALLOW_CROSS=1 local mycmakeargs=( diff --git a/games-emulation/rmg/rmg-9999.ebuild b/games-emulation/rmg/rmg-9999.ebuild index 6ca37bec719836..8dfa7f80649ec3 100644 --- a/games-emulation/rmg/rmg-9999.ebuild +++ b/games-emulation/rmg/rmg-9999.ebuild @@ -27,7 +27,7 @@ CRATES=" winapi@0.3.9 " -inherit cargo cmake flag-o-matic xdg +inherit cargo cmake flag-o-matic toolchain-funcs xdg MY_PN="${PN^^}" MY_P="${MY_PN}-${PV}" @@ -124,6 +124,7 @@ src_configure() { append-flags -fno-strict-aliasing filter-lto + export PKG_CONFIG="$(tc-getPKG_CONFIG)" export PKG_CONFIG_ALLOW_CROSS=1 local mycmakeargs=(