diff -Nru gcin-1.4.6/debian/changelog gcin-1.4.6/debian/changelog --- gcin-1.4.6/debian/changelog 2010-01-28 02:14:10.000000000 -0800 +++ gcin-1.4.6/debian/changelog 2010-02-10 15:13:58.000000000 -0800 @@ -1,3 +1,11 @@ +gcin (1.4.6-1ubuntu1) lucid; urgency=low + + * debian/patches/fix_gtk_deprecations.diff + - Fix FTBFS due to deprecated Gtk+ macros GTK_WIDGET_APP_PAINTABLE and + GTK_WIDGET_NO_WINDOW. (LP: #520148) + + -- Kamal Mostafa Wed, 10 Feb 2010 15:01:54 -0800 + gcin (1.4.6-1) unstable; urgency=low * New upstream release diff -Nru gcin-1.4.6/debian/control gcin-1.4.6/debian/control --- gcin-1.4.6/debian/control 2010-01-28 02:14:10.000000000 -0800 +++ gcin-1.4.6/debian/control 2010-02-10 15:03:25.000000000 -0800 @@ -1,7 +1,8 @@ Source: gcin Section: utils Priority: optional -Maintainer: Kan-Ru Chen +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Kan-Ru Chen Homepage: http://www.csie.nctu.edu.tw/~cp76/gcin/ Vcs-Git: git://git.debian.org/git/users/kanru-guest/gcin.git Vcs-Browser: http://git.debian.org/?p=users/kanru-guest/gcin.git;a=summary diff -Nru gcin-1.4.6/debian/patches/fix_gtk_deprecations.diff gcin-1.4.6/debian/patches/fix_gtk_deprecations.diff --- gcin-1.4.6/debian/patches/fix_gtk_deprecations.diff 1969-12-31 16:00:00.000000000 -0800 +++ gcin-1.4.6/debian/patches/fix_gtk_deprecations.diff 2010-02-10 14:57:18.000000000 -0800 @@ -0,0 +1,13 @@ +Index: gcin-1.4.6/eggtrayicon.cpp +=================================================================== +--- gcin-1.4.6.orig/eggtrayicon.cpp 2010-02-10 14:52:19.000000000 -0800 ++++ gcin-1.4.6/eggtrayicon.cpp 2010-02-10 14:55:40.000000000 -0800 +@@ -398,7 +398,7 @@ + static void + make_transparent (GtkWidget *widget, gpointer user_data) + { +- if (GTK_WIDGET_NO_WINDOW (widget) || GTK_WIDGET_APP_PAINTABLE (widget)) ++ if (!gtk_widget_get_has_window (widget) || gtk_widget_get_app_paintable (widget)) + return; + + gtk_widget_set_app_paintable (widget, TRUE); diff -Nru gcin-1.4.6/debian/patches/series gcin-1.4.6/debian/patches/series --- gcin-1.4.6/debian/patches/series 2010-01-28 02:14:10.000000000 -0800 +++ gcin-1.4.6/debian/patches/series 2010-02-10 14:51:40.000000000 -0800 @@ -4,3 +4,4 @@ fix_install_paths.diff ld_only_link_needed.diff fix_anthy_error_message.diff +fix_gtk_deprecations.diff