Codebase list policykit-1-gnome / d491c30
Imported Debian patch 0.9-1 Michael Biebl 14 years ago
3 changed file(s) with 11 addition(s) and 16 deletion(s). Raw diff Collapse all Expand all
0 policykit-gnome (0.9-1) unstable; urgency=low
1
2 * New upstream release.
3 * debian/control
4 - Bump Standards-Version to 3.8.0. No further changes.
5 * debian/patches/03-fix_i18n.patch
6 - Removed, merged upstream.
7
8 -- Michael Biebl <biebl@debian.org> Sun, 03 Aug 2008 11:13:52 +0200
9
010 policykit-gnome (0.8-2) unstable; urgency=low
111
212 * debian/patches/03-fix_i18n.patch
33 Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org>
44 Uploaders: Michael Biebl <biebl@debian.org>
55 Build-Depends: cdbs, debhelper (>= 5), autotools-dev, pkg-config, libgtk2.0-dev (>= 2.12.0), libgnome2-dev (>= 2.14.0), libgnomeui-dev (>= 2.14.0), libdbus-glib-1-dev (>= 0.71), libpolkit-dbus-dev (>= 0.7), libpolkit-grant-dev (>= 0.7), libsexy-dev (>= 0.1.11), gtk-doc-tools, gnome-doc-utils, libxml-parser-perl
6 Standards-Version: 3.7.3
6 Standards-Version: 3.8.0
77 Vcs-Svn: svn://svn.debian.org/svn/pkg-utopia/packages/unstable/policykit-gnome
88 Vcs-Browser: http://svn.debian.org/wsvn/pkg-utopia/packages/unstable/policykit-gnome
99 Homepage: http://hal.freedesktop.org/docs/PolicyKit-gnome/
+0
-15
debian/patches/03-fix_i18n.patch less more
0 # Description: Actually set the translation domain to have the application appear translated.
1 # Ubuntu: https://launchpad.net/bugs/199255
2 --- policykit-gnome-0.7.orig/tools/polkit-gnome-authorization.c 2007-12-06 05:31:23.000000000 +0200
3 +++ policykit-gnome-0.7/tools/polkit-gnome-authorization.c 2008-04-07 10:36:32.000000000 +0300
4 @@ -2329,6 +2329,10 @@
5 (GBoxedCopyFunc) polkit_policy_file_entry_ref,
6 (GBoxedFreeFunc) polkit_policy_file_entry_unref);
7
8 + bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
9 + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
10 + textdomain (GETTEXT_PACKAGE);
11 +
12 loop = g_main_loop_new (NULL, FALSE);
13
14 pkgc = polkit_gnome_context_get (NULL);