~wongchiachen/ubuntu/precise/totem/hey_about_dialog

« back to all changes in this revision

Viewing changes to src/plugins/publish/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
 
modules_flags = -export_dynamic -avoid-version -module
 
1
include $(top_srcdir)/src/plugins/Makefile.plugins
2
2
 
3
3
plugindir = $(PLUGINDIR)/publish
4
4
plugin_LTLIBRARIES = libpublish.la
5
5
 
6
 
plugin_in_files = publish.totem-plugin.in
7
 
 
8
 
%.totem-plugin: %.totem-plugin.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
9
 
 
10
 
plugin_DATA = $(plugin_in_files:.totem-plugin.in=.totem-plugin)
 
6
plugin_in_files = publish.plugin.in
11
7
 
12
8
uidir = $(PLUGINDIR)/publish
13
9
ui_DATA = publish-plugin.ui
14
 
 
15
 
common_defines = \
16
 
        -D_REENTRANT                                    \
17
 
        -DDBUS_API_SUBJECT_TO_CHANGE                    \
18
 
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
19
 
        -DGCONF_PREFIX=\""/apps/totem"\"                \
20
 
        -DDATADIR=\""$(datadir)"\"                      \
21
 
        -DLIBEXECDIR=\""$(libexecdir)"\"                \
22
 
        -DBINDIR=\""$(bindir)"\"                        \
23
 
        -DTOTEM_PLUGIN_DIR=\""$(libdir)/totem/plugins"\"\
24
 
        -DG_LOG_DOMAIN=\""Totem"\"                      \
25
 
        $(DISABLE_DEPRECATED)
 
10
EXTRA_DIST += $(ui_DATA)
26
11
 
27
12
libpublish_la_SOURCES = totem-publish.c
28
 
libpublish_la_LDFLAGS = $(modules_flags)
29
 
libpublish_la_LIBADD = $(LIBEPC_LIBS)
30
 
libpublish_la_CPPFLAGS = $(common_defines)
31
 
 
 
13
libpublish_la_LDFLAGS = $(plugin_ldflags)
 
14
libpublish_la_LIBADD = \
 
15
        $(plugin_libadd)        \
 
16
        $(LIBEPC_LIBS)
32
17
libpublish_la_CFLAGS = \
33
 
        $(DEPENDENCY_CFLAGS)    \
34
 
        $(WARN_CFLAGS)          \
35
 
        $(DBUS_CFLAGS)          \
36
 
        $(LIBEPC_CFLAGS)        \
37
 
        $(UNIQUE_CFLAGS)        \
38
 
        $(AM_CFLAGS)            \
39
 
        -I$(top_srcdir)/        \
40
 
        -I$(top_srcdir)/lib     \
41
 
        -I$(top_srcdir)/src     \
42
 
        -I$(top_srcdir)/src/backend \
43
 
        -I$(top_srcdir)/src/plugins
44
 
 
45
 
EXTRA_DIST = $(plugin_in_files) $(ui_DATA)
46
 
 
47
 
CLEANFILES = $(plugin_DATA) $(BUILT_SOURCES)
48
 
DISTCLEANFILES = $(plugin_DATA)
49
 
 
 
18
        $(plugin_cflags)        \
 
19
        $(LIBEPC_CFLAGS)
 
20
 
 
21
@INTLTOOL_XML_NOMERGE_RULE@
 
22
@GSETTINGS_RULES@
 
23
 
 
24
gsettings_SCHEMAS = org.gnome.totem.plugins.publish.gschema.xml
 
25
CLEANFILES += $(gsettings_SCHEMAS)
 
26
 
 
27
convertdir = $(datadir)/GConf/gsettings
 
28
convert_DATA = publish.convert
 
29
EXTRA_DIST += publish.convert
 
30
 
 
31
-include $(top_srcdir)/git.mk