~ubuntu-branches/ubuntu/maverick/gnome-session/maverick

« back to all changes in this revision

Viewing changes to po/Makefile.in.in

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2009-05-08 19:54:30 UTC
  • mfrom: (1.1.53 upstream) (2.1.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20090508195430-dgym2akyp3v19iyp
Tags: 2.26.1-1ubuntu1
* Sync with Debian Experimental.
* debian/control{.in}:
  - Add XS-Vcs-Bzr URL.
  - Dropped build-depends on libgnomeui-dev, gnome-keyring.
  - Added build-depends on xtrans-dev.
* debian/copyright:
  - Added new authors.
* debian/gnome-session.gconf-defaults:
  - Set gnome-wm as the default WM.
* debian/patches/19_gnome-wm-tweaking.patch:
  - Use GConf key to set default WM.
* debian/patches/80_new_upstream_session_dialog.patch:
  - Bugzilla patch to change the session dialog.
* debian/patches/81_gnome_wm_install.patch:
  - Install gnome-wm.desktop.
* debian/patches/90_no_debug_flood_by_default.patch:
  - Ship patch to disable debugging by default. This patch should
    be re-enabled during the gnome-session development cycle.
* debian/patches/90_relibtoolize.patch:
  - Dropped in favour of 98_autotools.patch.
* debian/patches/95_dbus_request_shutdown.patch:
  - Add "RequestShutdown" and "RequestReboot" DBus methods to
    allow other applications to shutdown or reboot the machine
    via the session manager.
* debian/patches/98_autotools.patch:
  - Required autotools update.
* debian/gnome-session.install:
  - Don't install /etc/gnome/defaults.list - this is installed
    by desktop-file-utils.
* debian/gnome-session.links:
  - Don't create hanging /usr/share/gnome/applications/defaults.list
    symlink.
* debian/rules:
  - Don't move autostart files to /usr/share/gnome/autostart. The
    upstream default is to install them in to /etc/xdg/autostart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
PACKAGE = @PACKAGE@
22
22
VERSION = @VERSION@
23
23
 
24
 
SHELL = @SHELL@
 
24
SHELL = /bin/sh
25
25
 
26
26
srcdir = @srcdir@
27
27
top_srcdir = @top_srcdir@
56
56
 
57
57
PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi)
58
58
 
59
 
USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep '^$$lang$$' $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep '^$$lang$$'`"; then printf "$$lang "; fi; done; fi)
 
59
USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep ^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep ^$$lang$$`"; then printf "$$lang "; fi; done; fi)
60
60
 
61
61
USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
62
62