forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
games-emulation/rmg: don't hard-code pkg-config
Closes: https://bugs.gentoo.org/941889 Upstream-PR: raphnet/mupen64plus-input-raphnetraw#17 Upstream-PR: Rosalie241/RMG#296 Upstream-Commit: Rosalie241/RMG@f6b73b8 Signed-off-by: orbea <[email protected]>
- Loading branch information
Showing
3 changed files
with
65 additions
and
2 deletions.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
games-emulation/rmg/files/rmg-0.6.6-mupen64plus-input-raphnetraw-pkgconfig.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]> | ||
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ CRATES=" | |
[email protected] | ||
" | ||
|
||
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=( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ CRATES=" | |
[email protected] | ||
" | ||
|
||
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=( | ||
|