[brasero] fix build against recent gtk

Matthias Clasen mclasen at fedoraproject.org
Wed Sep 22 14:25:54 UTC 2010


commit 617bc9ce879b6dafe749ebbe89795063c2ca3495
Author: Matthias Clasen <mclasen at redhat.com>
Date:   Wed Sep 22 10:24:33 2010 -0400

    fix build against recent gtk

 brasero.spec    |    6 +++-
 gtk-build.patch |   70 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 74 insertions(+), 2 deletions(-)
---
diff --git a/brasero.spec b/brasero.spec
index 97f7631..e805b45 100644
--- a/brasero.spec
+++ b/brasero.spec
@@ -14,6 +14,8 @@ URL:       http://www.gnome.org/projects/brasero/
 #VCS: git:git://git.gnome.org/brasero
 Source0:   http://ftp.gnome.org/pub/GNOME/sources/brasero/2.31/%{name}-%{version}.tar.bz2
 
+Patch0: gtk-build.patch
+
 BuildRequires:  gtk3-devel
 BuildRequires:  glib2-devel >= 2.15.6
 BuildRequires:  GConf2-devel
@@ -96,6 +98,7 @@ developing brasero applications.
 
 %prep
 %setup -q
+%patch0 -p1 -b .gtk-build
 
 %build
 %configure \
@@ -107,8 +110,7 @@ developing brasero applications.
         --enable-preview \
         --enable-inotify \
         --disable-caches \
-        --disable-static \
-        --disable-schemas-install
+        --disable-static
 sed -i -e 's! -shared ! -Wl,--as-needed\0!g' libtool
 make %{?_smp_mflags}
 
diff --git a/gtk-build.patch b/gtk-build.patch
new file mode 100644
index 0000000..cb83c26
--- /dev/null
+++ b/gtk-build.patch
@@ -0,0 +1,70 @@
+--- brasero-2.31.92/libbrasero-utils/brasero-jacket-buffer.c	2010-09-13 18:27:15.000000000 -0400
++++ hacked/libbrasero-utils/brasero-jacket-buffer.c	2010-09-22 09:31:27.139998002 -0400
+@@ -76,16 +76,12 @@
+ 	guint left_margin_accumulative = 0;
+ 	guint right_margin_accumulative = 0;
+ 
+-	g_return_if_fail (!dest->realized);
+-
+ 	for (; tags; tags = tags->next) {
+ 		GtkTextTag *tag;
+ 		gboolean accumulative_margin;
+ 		gboolean background_set;
+ 		gboolean fg_color_set;
+ 		gboolean pg_bg_color_set;
+-		gboolean bg_stipple_set;
+-		gboolean fg_stipple_set;
+ 		gboolean scale_set;
+ 		gboolean left_margin_set;
+ 		gboolean justification_set;
+@@ -113,8 +109,6 @@
+ 		              "background-set", &background_set,
+ 		              "foreground-set", &fg_color_set,
+ 		              "paragraph-background-set", &pg_bg_color_set,
+-		              "background-stipple-set", &bg_stipple_set,
+-		              "foreground-stipple-set", &fg_stipple_set,
+ 		              "scale-set", &scale_set,
+ 		              "left-margin-set", &left_margin_set,
+ 		              "justification-set", &justification_set,
+@@ -161,20 +155,6 @@
+ 			g_object_get (tag, "paragraph-background-gdk", &dest->pg_bg_color, NULL);
+ 		}
+ 
+-		if (bg_stipple_set) {
+-			if (dest->appearance.bg_stipple)
+-				g_object_unref (dest->appearance.bg_stipple);
+-			g_object_get (tag, "background-stipple", &dest->appearance.bg_stipple, NULL);
+-
+-			dest->appearance.draw_bg = TRUE;
+-		}
+-
+-		if (fg_stipple_set) {
+-			if (dest->appearance.fg_stipple)
+-				g_object_unref (dest->appearance.fg_stipple);
+-			g_object_get (tag, "foreground-stipple", &dest->appearance.fg_stipple, NULL);
+-		}
+-
+ 		if (font_desc) {
+ 			if (dest->font) {
+ 				pango_font_description_merge (dest->font, font_desc, TRUE);
+@@ -187,7 +167,7 @@
+ 		/* multiply all the scales together to get a composite */
+ 		if (scale_set) {
+ 			gdouble font_scale;
+-			g_object_get (tag, "foreground-stipple", &font_scale, NULL);
++			g_object_get (tag, "font-scale", &font_scale, NULL);
+ 			dest->font_scale *= font_scale;
+ 		}
+ 
+--- brasero-2.31.92/libbrasero-utils/brasero-jacket-edit.c	2010-09-13 18:27:15.000000000 -0400
++++ hacked/libbrasero-utils/brasero-jacket-edit.c	2010-09-22 09:33:13.807998006 -0400
+@@ -837,8 +837,7 @@
+ 	window = gtk_dialog_new_with_buttons (_("Cover Editor"),
+ 					      GTK_WINDOW (toplevel),
+ 					      GTK_DIALOG_MODAL|
+-					      GTK_DIALOG_DESTROY_WITH_PARENT|
+-					      GTK_DIALOG_NO_SEPARATOR,
++					      GTK_DIALOG_DESTROY_WITH_PARENT,
+ 					      GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE,
+ 					      NULL);
+ 


More information about the scm-commits mailing list