diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 9 | ||||
-rwxr-xr-x | debian/rules | 6 |
2 files changed, 15 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 2f54a40..77489ad 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +indicator-session (0.3.3.2-0ubuntu1) oneiric; urgency=low + + * New upstream release. + - Don't set LC_ALL to C + * debian/rules + - dh_translations doesn't handle multibuilds, so manually add the domain + + -- Ken VanDine <ken.vandine@canonical.com> Fri, 26 Aug 2011 09:49:37 -0400 + indicator-session (0.3.3.1-0ubuntu1) oneiric; urgency=low * New upstream release. diff --git a/debian/rules b/debian/rules index bee840d..a393364 100755 --- a/debian/rules +++ b/debian/rules @@ -23,4 +23,10 @@ common-install-arch:: find debian/tmp -name \*.a -delete find debian/tmp -name classic-desktop.sh | xargs chmod +x cd po; intltool-update --pot --verbose + # Language packs + for d in $$(find debian/tmp -type f \( -name "*.desktop" -o -name "*.directory" \) ); do \ + sed -ri '/^(Name|GenericName|Comment|X-GNOME-FullName)\[/d' $$d; \ + echo "X-Ubuntu-Gettext-Domain=indicator-session" >> $$d; \ + done; + |