summaryrefslogtreecommitdiff
path: root/games-arcade/xbubble/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
commit0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch)
tree07815070629c7c11000a7f51ceb8ccbccb49a809 /games-arcade/xbubble/files
parent1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'games-arcade/xbubble/files')
-rw-r--r--games-arcade/xbubble/files/xbubble-0.5.8-libpng14.patch13
-rw-r--r--games-arcade/xbubble/files/xbubble-0.5.8-locale.patch10
-rw-r--r--games-arcade/xbubble/files/xbubble-0.5.8-png15.patch20
-rw-r--r--games-arcade/xbubble/files/xbubble-0.5.8-xpaths.patch11
4 files changed, 0 insertions, 54 deletions
diff --git a/games-arcade/xbubble/files/xbubble-0.5.8-libpng14.patch b/games-arcade/xbubble/files/xbubble-0.5.8-libpng14.patch
deleted file mode 100644
index 4fe12672db65..000000000000
--- a/games-arcade/xbubble/files/xbubble-0.5.8-libpng14.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-http://bugs.gentoo.org/show_bug.cgi?id=308731
-
---- a/src/loadpng.c
-+++ b/src/loadpng.c
-@@ -55,7 +55,7 @@ unsigned char * load_png_file( const cha
- }
- /* ensure that we opened a PNG file */
- fread( header, 1, 8, fd );
-- if ( ! png_check_sig( header, 8 ) ) {
-+ if ( png_sig_cmp( header, 0, 8 ) ) {
- fclose(fd);
- fprintf(stderr,_("File %s does not have a valid PNG signature.\n"), file);
- return NULL;
diff --git a/games-arcade/xbubble/files/xbubble-0.5.8-locale.patch b/games-arcade/xbubble/files/xbubble-0.5.8-locale.patch
deleted file mode 100644
index 99c03b0c82af..000000000000
--- a/games-arcade/xbubble/files/xbubble-0.5.8-locale.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/src/gettext.h.orig 2008-10-07 12:01:37.000000000 -0400
-+++ b/src/gettext.h 2008-10-07 12:01:45.000000000 -0400
-@@ -24,6 +24,7 @@
-
- /* Get declarations of GNU message catalog functions. */
- # include <libintl.h>
-+# include <locale.h>
-
- #else
-
diff --git a/games-arcade/xbubble/files/xbubble-0.5.8-png15.patch b/games-arcade/xbubble/files/xbubble-0.5.8-png15.patch
deleted file mode 100644
index bbbae5c31076..000000000000
--- a/games-arcade/xbubble/files/xbubble-0.5.8-png15.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/src/loadpng.c.old 2011-09-14 09:58:40.503566961 +0200
-+++ b/src/loadpng.c 2011-09-14 10:03:39.708531447 +0200
-@@ -73,7 +73,7 @@
- return NULL;
- }
- /* libpng does a longjmp here when it encounters an error */
-- if ( setjmp( png_ptr->jmpbuf ) ) {
-+ if ( setjmp( png_jmpbuf(png_ptr) ) ) {
- png_destroy_read_struct( &png_ptr, &info_ptr, NULL);
- fclose(fd);
- return NULL;
-@@ -95,7 +95,7 @@
- png_set_gray_to_rgb(png_ptr);
-
- /* detect alpha layer */
-- if (( info_ptr->color_type & PNG_COLOR_MASK_ALPHA )||
-+ if (( png_get_color_type(png_ptr, info_ptr) & PNG_COLOR_MASK_ALPHA )||
- ( png_get_valid( png_ptr, info_ptr, PNG_INFO_tRNS )))
- *has_alpha = 1;
- else
diff --git a/games-arcade/xbubble/files/xbubble-0.5.8-xpaths.patch b/games-arcade/xbubble/files/xbubble-0.5.8-xpaths.patch
deleted file mode 100644
index 4db0b8f10ccf..000000000000
--- a/games-arcade/xbubble/files/xbubble-0.5.8-xpaths.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-the x_libraries variable isnt always defined
-http://bugs.gentoo.org/92688
-
---- a/configure
-+++ b/configure
-@@ -4511,3 +4511,5 @@
- fi
-+if test x"$x_libraries" != x; then
- LIBS="-L$x_libraries $LIBS"
-+fi
-