~wongchiachen/ubuntu/precise/totem/hey_about_dialog

« back to all changes in this revision

Viewing changes to src/plugins/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
1
SUBDIRS = $(PLUGINS)
2
 
DIST_SUBDIRS = $(ALL_PLUGINS) totem
3
 
 
4
 
noinst_LTLIBRARIES = libtotemmodule.la
5
 
 
6
 
common_defines = \
7
 
        -D_REENTRANT                                    \
8
 
        -DDBUS_API_SUBJECT_TO_CHANGE                    \
9
 
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
10
 
        -DGCONF_PREFIX=\""/apps/totem"\"                \
11
 
        -DDATADIR=\""$(datadir)"\"                      \
12
 
        -DLIBEXECDIR=\""$(libexecdir)"\"                \
13
 
        -DBINDIR=\""$(bindir)"\"                        \
14
 
        -DTOTEM_PLUGIN_DIR=\""$(libdir)/totem/plugins"\"\
15
 
        -DG_LOG_DOMAIN=\""Totem"\"                      \
16
 
        $(DISABLE_DEPRECATED)
17
 
 
18
 
modules_flags = -export_dynamic -avoid-version -module
19
 
 
20
 
libtotemmodule_la_SOURCES =             \
21
 
        totem-module.c                  \
22
 
        totem-module.h                  \
23
 
        totem-plugin.c                  \
24
 
        totem-plugin.h                  \
25
 
        totem-plugins-engine.c          \
26
 
        totem-plugins-engine.h          \
27
 
        totem-plugin-manager.c          \
28
 
        totem-plugin-manager.h
29
 
 
30
 
libtotemmodule_la_CPPFLAGS = \
31
 
        $(common_defines)       \
32
 
        $(AM_CPPFLAGS)
33
 
 
34
 
libtotemmodule_la_CFLAGS = \
35
 
        $(DEPENDENCY_CFLAGS)    \
36
 
        $(WARN_CFLAGS)          \
37
 
        $(DBUS_CFLAGS)          \
38
 
        $(AM_CFLAGS)            \
39
 
        -I$(top_srcdir)                                 \
40
 
        -I$(top_srcdir)/lib                             \
41
 
        -I$(top_builddir)/lib                           \
42
 
        -I$(top_srcdir)/src                             \
43
 
        -I$(top_srcdir)/src/backend                     \
44
 
        -I$(top_srcdir)/src/plugins
45
 
 
46
 
libtotemmodule_la_LDFLAGS = \
47
 
        $(AM_LDFLAGS)                   
48
 
 
49
 
if ENABLE_PYTHON
50
 
 
51
 
SUBDIRS += totem
52
 
 
53
 
libtotemmodule_la_LIBADD = \
54
 
        $(DEPENDENCY_LIBS)      \
55
 
        $(PYTHON_LIBS)          \
56
 
        $(PYTHON_EXTRA_LIBS)    \
57
 
        $(PYGTK_LIBS)
58
 
 
59
 
libtotemmodule_la_SOURCES += \
60
 
        totem-python-module.c           \
61
 
        totem-python-module.h           \
62
 
        totem-python-plugin.c           \
63
 
        totem-python-plugin.h
64
 
 
65
 
libtotemmodule_la_CFLAGS += \
66
 
        $(NO_STRICT_ALIASING_CFLAGS)    \
67
 
        $(PYGTK_CFLAGS)                 \
68
 
        $(PYTHON_CFLAGS)
69
 
endif
 
2
DIST_SUBDIRS = $(ALL_PLUGINS)
 
3
 
 
4
EXTRA_DIST = Makefile.plugins
 
5
 
 
6
-include $(top_srcdir)/git.mk