Codebase list policykit-1-gnome / debian/0.6-1
Imported Debian patch 0.6-1 Michael Biebl 14 years ago
5 changed file(s) with 18 addition(s) and 36 deletion(s). Raw diff Collapse all Expand all
0 policykit-gnome (0.6-1) experimental; urgency=low
1
2 * New upstream release.
3 * debian/control
4 - Use the new "Homepage:" field to specify the upstream URL.
5 - The Vcs-* fields are now officially supported, so remove the XS- prefix.
6 * debian/patches/01_no_tooltip.patch
7 - Prevent building of the example binaries with the --disable-examples
8 configure flag. This makes the patch obsolete and it is thus removed.
9
10 -- Michael Biebl <biebl@debian.org> Sat, 03 Nov 2007 01:15:32 +0100
11
012 policykit-gnome (0.5-1) experimental; urgency=low
113
214 * Initial release. (Closes: #442254)
22 Priority: optional
33 Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org>
44 Uploaders: Michael Biebl <biebl@debian.org>
5 Build-Depends: cdbs, debhelper (>= 5), autotools-dev, libgtk2.0-dev (>= 2.6.0), libgnome2-dev (>= 2.14.0), libgnomeui-dev (>= 2.14.0), libdbus-glib-1-dev (>= 0.71), libpolkit-dbus-dev (>= 0.5), libpolkit-grant-dev (>= 0.5), gnome-doc-utils, libxml-parser-perl, policykit
5 Build-Depends: cdbs, debhelper (>= 5), autotools-dev, libgtk2.0-dev (>= 2.6.0), libgnome2-dev (>= 2.14.0), libgnomeui-dev (>= 2.14.0), libdbus-glib-1-dev (>= 0.71), libpolkit-dbus-dev (>= 0.5), libpolkit-grant-dev (>= 0.5), gnome-doc-utils, libxml-parser-perl
66 Standards-Version: 3.7.2
7 XS-Vcs-Svn: svn://svn.debian.org/svn/pkg-utopia/packages/experimental/policykit-gnome
8 XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-utopia/packages/experimental/policykit-gnome
7 Vcs-Svn: svn://svn.debian.org/svn/pkg-utopia/packages/experimental/policykit-gnome
8 Vcs-Browser: http://svn.debian.org/wsvn/pkg-utopia/packages/experimental/policykit-gnome
9 Homepage: http://cgit.freedesktop.org/~david/PolicyKit-gnome/
910
1011 Package: policykit-gnome
1112 Architecture: any
1314 Description: GNOME dialogs for PolicyKit
1415 PolicyKit-gnome provides a D-Bus session bus service that is used to
1516 bring up authentication dialogs used for obtaining privileges.
16 .
17 Homepage: http://cgit.freedesktop.org/~david/PolicyKit-gnome/
+0
-30
debian/patches/01_no_tooltip.patch less more
0 diff --git a/examples/polkit-gnome-example.c b/examples/polkit-gnome-example.c
1 index e4d7e47..60551ab 100644
2 --- a/examples/polkit-gnome-example.c
3 +++ b/examples/polkit-gnome-example.c
4 @@ -210,7 +210,7 @@ update_one_button (GtkWidget *button, const char *pk_action_id)
5 case POLKIT_RESULT_NO:
6 gtk_button_set_image (GTK_BUTTON (button),
7 gtk_image_new_from_stock (GTK_STOCK_STOP, GTK_ICON_SIZE_SMALL_TOOLBAR));
8 - gtk_widget_set_tooltip_markup (button, _("This action is not permitted"));
9 + //gtk_widget_set_tooltip_markup (button, _("This action is not permitted"));
10 break;
11
12 case POLKIT_RESULT_ONLY_VIA_ADMIN_AUTH:
13 @@ -224,14 +224,14 @@ update_one_button (GtkWidget *button, const char *pk_action_id)
14
15 s = g_strdup_printf (_("This action requires authentication (%s)"),
16 polkit_result_to_string_representation (pk_result));
17 - gtk_widget_set_tooltip_markup (button, s);
18 + //gtk_widget_set_tooltip_markup (button, s);
19 g_free (s);
20 break;
21
22 case POLKIT_RESULT_YES:
23 gtk_button_set_image (GTK_BUTTON (button),
24 gtk_image_new_from_stock (GTK_STOCK_OK, GTK_ICON_SIZE_SMALL_TOOLBAR));
25 - gtk_widget_set_tooltip_markup (button, _("This action is permitted"));
26 + //gtk_widget_set_tooltip_markup (button, _("This action is permitted"));
27 break;
28 }
29
88 DEB_DESTDIR := $(CURDIR)/debian/tmp
99
1010 DEB_CONFIGURE_SCRIPT_ENV += LDFLAGS="-Wl,--as-needed"
11 DEB_CONFIGURE_EXTRA_FLAGS := --disable-examples
1112
00 version=3
11
2 http://hal.freedesktop.org/releases/PolicyKit-gnome-(.*)\.tar\.gz
2 http://hal.freedesktop.org/releases/PolicyKit-gnome-(.*)\.tar\.bz2