~wongchiachen/ubuntu/precise/totem/hey_about_dialog

« back to all changes in this revision

Viewing changes to lib/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2011-05-20 16:38:02 UTC
  • mfrom: (1.11.13 upstream) (2.1.17 experimental)
  • Revision ID: james.westby@ubuntu.com-20110520163802-p3lohdmfvws2jqeo
Tags: 3.0.1-0ubuntu1
* Resynchronize on Debian, remaining diffs:
* debian/control.in:
  - use suggests rather than recommends for universe gstreamer components
  - add totem-plugins-extra for the components which have depends in universe
  - add build-depends on gnome-common, dh-autoreconf, 
    liblaunchpad-intrgration-3.0-dev, hardening-wrapper
  - drop build-depends on libepc-ui-dev, python-feedparser, xulrunner-dev,
    libtracker-sparql-0.10-dev
  - add XB-Npp-Description and XB-Npp-Filename header to the 
    totem-mozilla package to improve ubufox/ubuntu plugin db integration 
  - change refences from Iceweasel to Firefox
  - recommends gnome-icon-theme-symbolic rather than depending on it
  - list firefox as a totem-mozilla recommends before epiphany-browser
  - libtotem replaces totem (<< 3.0.1-1) for ppa upgrades
* debian/totem-common.install:
  - Install apport hook
* debian/totem-plugins-extra.install:
  - Plugins split out ouf totem-plugins
* debian/totem-plugins.install:    
  - Move some plugins to totem-plugins-extra
* debian/totem.preinst:
  - No longer required as Lucid has been released
* debian/patches/01_fake_keypresses.patch:
  - dropped it's an old workaround and should not be required
* debian/patches/02_lpi.patch:
  - Launchpad integration
* debian/patches/03_default_options.patch: 
  - enable the youtube option by default
* debian/patches/70_bbc_plugin.patch:
  - bbc content viewer, needs to be fixed for the new version
* debian/source_totem.py:
  - ubuntu apport debugging
* debian/rules:
  - run autoreconf on build
* debian/watch:
  - Watch for unstable versions

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
noinst_LTLIBRARIES =                                    \
2
 
        libtotemscrsaver.la
3
 
 
4
 
common_defines = \
5
 
        -D_REENTRANT                                    \
6
 
        -DDBUS_API_SUBJECT_TO_CHANGE                    \
7
 
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
8
 
        -DGCONF_PREFIX=\""/apps/totem"\"                \
9
 
        -DDATADIR=\""$(datadir)"\"                      \
10
 
        -DLIBEXECDIR=\""$(libexecdir)"\"                \
11
 
        -DBINDIR=\""$(bindir)"\"                        \
12
 
        -DLOGO_PATH=DATADIR\"\"G_DIR_SEPARATOR_S\"totem\"G_DIR_SEPARATOR_S\"totem_logo.png\"    \
13
 
        $(DISABLE_DEPRECATED)
14
 
 
15
 
libtotemscrsaver_la_SOURCES =                           \
16
 
        totem-scrsaver.c                                \
 
1
noinst_LTLIBRARIES = libtotemscrsaver.la
 
2
 
 
3
libtotemscrsaver_la_SOURCES = \
 
4
        totem-scrsaver.c        \
17
5
        totem-scrsaver.h
18
6
 
19
 
libtotemscrsaver_la_CFLAGS =                            \
20
 
        $(common_defines)                               \
21
 
        $(DEPENDENCY_CFLAGS)                            \
22
 
        $(WARN_CFLAGS)                                  \
23
 
        $(DBUS_CFLAGS)                                  \
24
 
        $(AM_CFLAGS)
25
 
 
26
 
libtotemscrsaver_la_LDFLAGS =                           \
27
 
        $(AM_LDFLAGS)
28
 
 
29
 
libtotemscrsaver_la_LIBADD =                            \
30
 
        $(DBUS_LIBS)                                    \
 
7
libtotemscrsaver_la_CPPFLAGS = $(DISABLE_DEPRECATED)
 
8
 
 
9
libtotemscrsaver_la_CFLAGS = \
 
10
        $(DEPENDENCY_CFLAGS)    \
 
11
        $(WARN_CFLAGS)          \
 
12
        $(DBUS_CFLAGS)
 
13
 
 
14
libtotemscrsaver_la_LIBADD = \
 
15
        $(DEPENDENCY_LIBS)      \
 
16
        $(DBUS_LIBS)            \
31
17
        $(XTEST_LIBS)
32
18
 
 
19
-include $(top_srcdir)/git.mk