summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2020-09-17 17:25:33 +0100
committerJames Le Cuirot <chewi@gentoo.org>2020-09-17 17:27:01 +0100
commit633ba8dd6e962cce120e36c8b7de882f291bd0b7 (patch)
tree4f74878e5bb5f71a1509d7568299492d3a7ef572 /app-emulation/vice/files
parentnet-analyzer/nmap: nmap-update removed (diff)
downloadgentoo-633ba8dd6e962cce120e36c8b7de882f291bd0b7.tar.gz
gentoo-633ba8dd6e962cce120e36c8b7de882f291bd0b7.tar.bz2
gentoo-633ba8dd6e962cce120e36c8b7de882f291bd0b7.zip
app-emulation/vice: Bump 3.4 to rev 38553
This now adds desktop icons. Package-Manager: Portage-3.0.6, Repoman-3.0.1 Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'app-emulation/vice/files')
-rw-r--r--app-emulation/vice/files/vice-pkg-config-3.4_p38553.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/app-emulation/vice/files/vice-pkg-config-3.4_p38553.patch b/app-emulation/vice/files/vice-pkg-config-3.4_p38553.patch
new file mode 100644
index 000000000000..557c0a927318
--- /dev/null
+++ b/app-emulation/vice/files/vice-pkg-config-3.4_p38553.patch
@@ -0,0 +1,29 @@
+https://sourceforge.net/p/vice-emu/patches/218/
+
+Index: configure.ac
+===================================================================
+--- a/configure.ac (revision 38502)
++++ b/configure.ac (working copy)
+@@ -1275,6 +1275,14 @@
+ fi
+
+ if test x"$found_sdl2" != "xyes"; then
++ PKG_CHECK_MODULES(SDL2, sdl2, [
++ use_sdl_prefix=no
++ use_sdl2_prefix=no
++ found_sdl2=yes
++ VICE_CFLAGS="$VICE_CFLAGS $SDL2_CFLAGS"
++ VICE_CXXFLAGS="$VICE_CXXFLAGS $SDL2_CFLAGS"
++ LIBS="$LIBS $SDL2_LIBS"
++ ], [
+ dnl Check for sdl2-config
+ if test x"$sdl2_config" != "xno"; then
+ user_CFLAGS="$CFLAGS"
+@@ -1311,6 +1319,7 @@
+ CFLAGS="$user_CFLAGS"
+ CXXFLAGS="$user_CXXFLAGS"
+ fi
++ ])
+ fi
+
+ dnl fail if SDL2 ui was requested, otherwise restore flags and continue