diff options
Diffstat (limited to 'x11-toolkits/gtk30/files')
6 files changed, 74 insertions, 0 deletions
diff --git a/x11-toolkits/gtk30/files/patch-Makefile.in b/x11-toolkits/gtk30/files/patch-Makefile.in new file mode 100644 index 000000000..610efe8e5 --- /dev/null +++ b/x11-toolkits/gtk30/files/patch-Makefile.in @@ -0,0 +1,11 @@ +--- Makefile.in.orig 2011-09-15 18:04:34.000000000 +0200 ++++ Makefile.in 2011-09-15 18:05:12.000000000 +0200 +@@ -422,7 +422,7 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +-SRC_SUBDIRS = gdk gtk libgail-util modules demos tests perf examples ++SRC_SUBDIRS = gdk gtk libgail-util modules demos perf examples + SUBDIRS = po po-properties $(SRC_SUBDIRS) docs m4macros build + ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} + MAINTAINERCLEANFILES = \ diff --git a/x11-toolkits/gtk30/files/patch-docs_Makefile.in b/x11-toolkits/gtk30/files/patch-docs_Makefile.in new file mode 100644 index 000000000..cc9e4c46a --- /dev/null +++ b/x11-toolkits/gtk30/files/patch-docs_Makefile.in @@ -0,0 +1,11 @@ +--- docs/Makefile.in.orig 2010-12-24 00:14:51.000000000 +0100 ++++ docs/Makefile.in 2010-12-24 00:15:52.000000000 +0100 +@@ -220,7 +220,7 @@ + LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ + LT_VERSION_INFO = @LT_VERSION_INFO@ + MAINT = @MAINT@ +-MAKEINFO = @MAKEINFO@ ++MAKEINFO = @MAKEINFO@ --no-split + MANIFEST_TOOL = @MANIFEST_TOOL@ + MATH_LIB = @MATH_LIB@ + MKDIR_P = @MKDIR_P@ diff --git a/x11-toolkits/gtk30/files/patch-docs_reference_Makefile.in b/x11-toolkits/gtk30/files/patch-docs_reference_Makefile.in new file mode 100644 index 000000000..a9d1d5f21 --- /dev/null +++ b/x11-toolkits/gtk30/files/patch-docs_reference_Makefile.in @@ -0,0 +1,11 @@ +--- docs/reference/Makefile.in.orig 2010-06-27 12:22:03.000000000 +0200 ++++ docs/reference/Makefile.in 2010-06-27 12:22:37.000000000 +0200 +@@ -354,7 +354,7 @@ + || { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \ + && DISPLAY=:$$XID && export DISPLAY + +-SUBDIRS = gdk gtk libgail-util ++SUBDIRS = #gdk gtk libgail-util + GITIGNOREFILES = */*.1 + all: all-recursive + diff --git a/x11-toolkits/gtk30/files/patch-docs_reference_gtk_Makefile.in b/x11-toolkits/gtk30/files/patch-docs_reference_gtk_Makefile.in new file mode 100644 index 000000000..862035f40 --- /dev/null +++ b/x11-toolkits/gtk30/files/patch-docs_reference_gtk_Makefile.in @@ -0,0 +1,10 @@ +--- docs/reference/gtk/Makefile.in.orig 2013-03-28 10:39:58.000000000 +0000 ++++ docs/reference/gtk/Makefile.in 2013-03-28 10:43:09.000000000 +0000 +@@ -852,7 +852,6 @@ + ######################################################################## + man_MANS = \ + gtk-query-immodules-3.0.1 \ +- gtk-update-icon-cache.1 \ + gtk-launch.1 \ + broadwayd.1 + diff --git a/x11-toolkits/gtk30/files/patch-gtk_gtkbuilderparser.c b/x11-toolkits/gtk30/files/patch-gtk_gtkbuilderparser.c new file mode 100644 index 000000000..2a2c4aa06 --- /dev/null +++ b/x11-toolkits/gtk30/files/patch-gtk_gtkbuilderparser.c @@ -0,0 +1,20 @@ +--- gtk/gtkbuilderparser.c.dist 2010-06-08 14:11:06.000000000 -0500 ++++ gtk/gtkbuilderparser.c 2010-06-08 14:11:33.000000000 -0500 +@@ -1051,7 +1051,7 @@ + /* Called for character data */ + /* text is not nul-terminated */ + static void +-text (GMarkupParseContext *context, ++XXXtext (GMarkupParseContext *context, + const gchar *text, + gsize text_len, + gpointer user_data, +@@ -1106,7 +1106,7 @@ + static const GMarkupParser parser = { + start_element, + end_element, +- text, ++ XXXtext, + NULL, + NULL + }; diff --git a/x11-toolkits/gtk30/files/patch-gtk_updateiconcache.c b/x11-toolkits/gtk30/files/patch-gtk_updateiconcache.c new file mode 100644 index 000000000..206257551 --- /dev/null +++ b/x11-toolkits/gtk30/files/patch-gtk_updateiconcache.c @@ -0,0 +1,11 @@ +--- gtk/updateiconcache.c.orig 2009-05-11 18:05:35.000000000 +0200 ++++ gtk/updateiconcache.c 2009-05-30 12:03:39.000000000 +0200 +@@ -1505,7 +1505,7 @@ opentmp: + if (!validate_file (tmp_cache_path)) + { + g_printerr (_("The generated cache was invalid.\n")); +- /*g_unlink (tmp_cache_path);*/ ++ g_unlink (tmp_cache_path); + exit (1); + } + |