~ubuntu-branches/ubuntu/trusty/totem/trusty-proposed

« back to all changes in this revision

Viewing changes to src/plugins/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette, Josselin Mouette, Loic Minier, Sjoerd Simons
  • Date: 2008-09-10 15:38:34 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080910153834-kxne946nj2b5squf
Tags: 2.22.2-4
[ Josselin Mouette ]
* Change the recommends on g-c-c to one on g-s-d. Also move it to
  totem-plugins, which is the package providing the media keys
  functionality.
* Change the depends on dbus to dbus-x11.

[ Loic Minier ]
* Let totem-gstreamer recommend gnome-app-install for easy codec
  installation.

[ Josselin Mouette ]
* 02_flv.patch: the canonical MIME type for Flash videos is 
  video/x-flv, not video/flv. Closes: #486468.

[ Sjoerd Simons ]
* 30_fix_youtube_plugin.patch: Set the server as a keyword argument to be
  compatible with both old and new versions of python-gdata. Fixes searching
  for youtube videos
* debian/control.in: Fix double Recommend field for totem-gstreamer

[ Josselin Mouette ]
* rules: rally disable the vala plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
        $(DISABLE_DEPRECATED)
 
16
 
 
17
modules_flags = -export_dynamic -avoid-version -module
 
18
 
 
19
libtotemmodule_la_SOURCES =             \
 
20
        totem-module.c                  \
 
21
        totem-module.h                  \
 
22
        totem-plugin.c                  \
 
23
        totem-plugin.h                  \
 
24
        totem-plugins-engine.c          \
 
25
        totem-plugins-engine.h          \
 
26
        totem-plugin-manager.c          \
 
27
        totem-plugin-manager.h
 
28
 
 
29
libtotemmodule_la_CPPFLAGS = \
 
30
        $(common_defines)       \
 
31
        $(AM_CPPFLAGS)
 
32
 
 
33
libtotemmodule_la_CFLAGS = \
 
34
        $(EXTRA_GNOME_CFLAGS)   \
 
35
        $(WARN_CFLAGS)          \
 
36
        $(DBUS_CFLAGS)          \
 
37
        $(AM_CFLAGS)            \
 
38
        -I$(top_srcdir)                                 \
 
39
        -I$(top_srcdir)/lib                             \
 
40
        -I$(top_builddir)/lib                           \
 
41
        -I$(top_srcdir)/src                             \
 
42
        -I$(top_srcdir)/src/backend                     \
 
43
        -I$(top_srcdir)/src/plparse                     \
 
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
        $(EXTRA_GNOME_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