~ubuntu-branches/ubuntu/precise/empathy/precise-proposed-201205180810

« back to all changes in this revision

Viewing changes to telepathy-yell/tools/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Brian Curtis, Brian Curtis, Ken VanDine
  • Date: 2011-06-01 10:35:24 UTC
  • mfrom: (1.1.70 upstream) (6.3.44 experimental)
  • Revision ID: james.westby@ubuntu.com-20110601103524-wx3wgp71394730jt
Tags: 3.1.1-1ubuntu1
[ Brian Curtis ]
* Merge with Debian experimental, remaining Ubuntu changes:
* debian/control:
  - Drop geoclue/mapping build-depends (they are in Universe)
  - Add Vcz-Bzr link
  - Add Suggests on telepathy-idle
  - Bump telepathy-butterfly, telepathy-haze to recommends
  - Don't recommend the freedesktop sound theme we have an ubuntu one
  - Add build depend for libunity-dev
* debian/rules:
  - Use autoreconf.mk
  - Disable map and location
* debian/empathy.install:
  - Install message indicator configuration
* debian/indicators/empathy:
  - Message indicator configuration
* debian/patches/01_lpi.patch:
  - Add Launchpad integration
* debian/patches/10_use_notify_osd_icons.patch:
  - Use the notify-osd image for new messages
* debian/patches/34_start_raised_execpt_in_session.patch
  - If not started with the session, we should always raise
* debian/patches/36_chat_window_default_size.patch:
  - Make the default chat window size larger
* debian/patches/37_facebook_default.patch:
  - Make facebook the default chat account type
* debian/patches/38_lp_569289.patch
  - Set freenode as default IRC network for new IRC accounts 
* debian/patches/41_unity_launcher_progress.patch
  - Display file transfer progress in the unity launcher

[ Ken VanDine ]
* debian/control
  - build depend on libgcr-3-dev instead of libgcr-dev
  - dropped build depends for libindicate, we will use telepathy-indicator
  - Depend on dconf-gsettings-backend | gsettings-backend
  - Added a Recommends for telepathy-indicator
* +debian/empathy.gsettings-override
  - Added an override for notifications-focus
* debian/patches/series
  - commented out 23_idomessagedialog_for_voip_and_ft.patch, until ido has 
    been ported to gtk3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
EXTRA_DIST = \
2
 
    c-constants-gen.py \
3
 
    check-coding-style.mk \
4
 
    check-c-style.sh \
5
 
    check-misc.sh \
6
 
    check-whitespace.sh \
7
 
    doc-generator.xsl \
8
 
    glib-client-gen.py \
9
 
    glib-client-marshaller-gen.py \
10
 
    glib-errors-enum-body-gen.py \
11
 
    glib-errors-enum-header-gen.py \
12
 
    glib-ginterface-gen.py \
13
 
    glib-gtypes-generator.py \
14
 
    glib-interfaces-gen.py \
15
 
    glib-signals-marshal-gen.py \
16
 
    gobject-foo.py \
17
 
    identity.xsl \
18
 
    libtpcodegen.py \
19
 
    libglibcodegen.py \
20
 
    make-version-script.py \
21
 
    with-session-bus.sh
22
 
 
23
 
CLEANFILES = libtpcodegen.pyc libtpcodegen.pyo libglibcodegen.pyc libglibcodegen.pyo $(noinst_SCRIPTS)
24
 
 
25
 
all: $(EXTRA_DIST)
26
 
 
27
 
libglibcodegen.py: libtpcodegen.py
28
 
        touch $@
29
 
c-constants-gen.py: libglibcodegen.py
30
 
        touch $@
31
 
glib-client-marshaller-gen.py: libglibcodegen.py
32
 
        touch $@
33
 
glib-errors-enum-body-gen.py: libglibcodegen.py
34
 
        touch $@
35
 
glib-errors-enum-header-gen.py: libglibcodegen.py
36
 
        touch $@
37
 
glib-ginterface-gen.py: libglibcodegen.py
38
 
        touch $@
39
 
glib-gtypes-generator.py: libglibcodegen.py
40
 
        touch $@
41
 
glib-interfaces-gen.py: libglibcodegen.py
42
 
        touch $@
43
 
glib-signals-marshal-gen.py: libglibcodegen.py
44
 
        touch $@
45
 
 
46
 
TELEPATHY_GLIB_SRCDIR = $(top_srcdir)/../telepathy-glib
47
 
maintainer-update-from-telepathy-glib:
48
 
        set -e && cd $(srcdir) && \
49
 
        for x in $(EXTRA_DIST); do \
50
 
                if test -f $(TELEPATHY_GLIB_SRCDIR)/tools/$$x; then \
51
 
                        cp $(TELEPATHY_GLIB_SRCDIR)/tools/$$x $$x; \
52
 
                fi; \
53
 
        done