diff options
author | 2019-01-13 00:19:34 +0000 | |
---|---|---|
committer | 2019-01-13 14:27:20 +0000 | |
commit | 98b911b67554ddbecaa92b471a6cbdf43716766a (patch) | |
tree | d1e2bdc8c55d0341aacb5eedc9c71bc01c6a0925 /app-emulation/gallium-nine-standalone/files | |
parent | profiles/package.mask: mask app-emulation/ganeti-htools for, bug #675220 (diff) | |
download | gentoo-98b911b67554ddbecaa92b471a6cbdf43716766a.tar.gz gentoo-98b911b67554ddbecaa92b471a6cbdf43716766a.tar.bz2 gentoo-98b911b67554ddbecaa92b471a6cbdf43716766a.zip |
app-emulation/gallium-nine-standalone: New package
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'app-emulation/gallium-nine-standalone/files')
-rw-r--r-- | app-emulation/gallium-nine-standalone/files/flags.patch | 28 | ||||
-rw-r--r-- | app-emulation/gallium-nine-standalone/files/nine-dll-path.patch | 12 |
2 files changed, 40 insertions, 0 deletions
diff --git a/app-emulation/gallium-nine-standalone/files/flags.patch b/app-emulation/gallium-nine-standalone/files/flags.patch new file mode 100644 index 000000000000..217dcddf35b9 --- /dev/null +++ b/app-emulation/gallium-nine-standalone/files/flags.patch @@ -0,0 +1,28 @@ +diff -Naur a/tools/cross-wine32.in b/tools/cross-wine32.in +--- a/tools/cross-wine32.in 2019-01-12 16:45:09.190471883 +0000 ++++ b/tools/cross-wine32.in 2019-01-12 16:48:22.569404982 +0000 +@@ -5,8 +5,8 @@ + pkgconfig = '@PKG_CONFIG@' + + [properties] +-c_args = ['-m32', '--no-gnu-unique'] +-c_link_args = ['-m32', '-mwindows'] ++c_args = @CFLAGS@ + ['-m32', '--no-gnu-unique'] ++c_link_args = @LDFLAGS@ + ['-m32', '-mwindows'] + needs_exe_wrapper = true + + [host_machine] +diff -Naur a/tools/cross-wine64.in b/tools/cross-wine64.in +--- a/tools/cross-wine64.in 2019-01-12 16:45:09.190471883 +0000 ++++ b/tools/cross-wine64.in 2019-01-12 16:48:19.865349306 +0000 +@@ -5,8 +5,8 @@ + pkgconfig = '@PKG_CONFIG@' + + [properties] +-c_args = ['-m64', '--no-gnu-unique'] +-c_link_args = ['-m64', '-mwindows'] ++c_args = @CFLAGS@ + ['-m64', '--no-gnu-unique'] ++c_link_args = @LDFLAGS@ + ['-m64', '-mwindows'] + needs_exe_wrapper = true + + [host_machine] diff --git a/app-emulation/gallium-nine-standalone/files/nine-dll-path.patch b/app-emulation/gallium-nine-standalone/files/nine-dll-path.patch new file mode 100644 index 000000000000..9399dde3e4f6 --- /dev/null +++ b/app-emulation/gallium-nine-standalone/files/nine-dll-path.patch @@ -0,0 +1,12 @@ +diff -Naur a/ninewinecfg/main.c b/ninewinecfg/main.c +--- a/ninewinecfg/main.c 2019-01-12 19:43:40.113737110 +0000 ++++ b/ninewinecfg/main.c 2019-01-12 19:46:54.213703713 +0000 +@@ -47,7 +47,7 @@ + #define WINE_STAGING 1 + #endif + +-static const char * const fn_nine_dll = "d3d9-nine.dll"; ++static const char * const fn_nine_dll = G9DLL; + static const char * const reg_path_dll_overrides = "Software\\Wine\\DllOverrides"; + static const char * const reg_path_dll_redirects = "Software\\Wine\\DllRedirects"; + static const char * const reg_key_d3d9 = "d3d9"; |