~kaozilon/totem/test

« back to all changes in this revision

Viewing changes to src/plugins/screenshot/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sjoerd Simons, Josselin Mouette, Sjoerd Simons, Emilio Pozuelo Monfort
  • Date: 2009-04-19 17:28:51 UTC
  • mfrom: (1.2.52 upstream) (5.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090419172851-epoqimnq62akn294
Tags: 2.26.1-1
[ Josselin Mouette ]
* totem-plugins depends on python-gdbm. Closes: #523582.

[ Sjoerd Simons ]
* New upstream release (2.26.1)
* debian/patches/02_flv.patch: Dropped, fixed upstream
* debian/patches/04_tracker_build.patch: Dropped, fixed upstream
* debian/patches/01_fake_keypresses.patch: Updated and simplified
* debian/patches/70_bbc_plugin.patch: Updated
* debian/patches/90_autotools.patch: Updated

[ Emilio Pozuelo Monfort ]
* Recommend gnome-codec-install rather than gnome-app-install.
  Closes: #523052.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
modules_flags = -export_dynamic -avoid-version -module
 
2
 
 
3
plugindir = $(PLUGINDIR)/screenshot
 
4
uidir = $(plugindir)
 
5
plugin_LTLIBRARIES = libscreenshot.la
 
6
 
 
7
plugin_in_files = screenshot.totem-plugin.in
 
8
 
 
9
%.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
 
10
 
 
11
plugin_DATA = $(plugin_in_files:.totem-plugin.in=.totem-plugin)
 
12
ui_DATA = gallery.ui
 
13
 
 
14
common_defines = \
 
15
        -D_REENTRANT                                    \
 
16
        -DDBUS_API_SUBJECT_TO_CHANGE                    \
 
17
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
 
18
        -DGCONF_PREFIX=\""/apps/totem"\"                \
 
19
        -DDATADIR=\""$(datadir)"\"                      \
 
20
        -DLIBEXECDIR=\""$(libexecdir)"\"                \
 
21
        -DBINDIR=\""$(bindir)"\"                        \
 
22
        -DTOTEM_PLUGIN_DIR=\""$(libdir)/totem/plugins"\"\
 
23
        $(DISABLE_DEPRECATED)
 
24
 
 
25
libscreenshot_la_SOURCES = \
 
26
        totem-screenshot-plugin.c       \
 
27
        totem-screenshot-plugin.h       \
 
28
        totem-screenshot.c              \
 
29
        totem-screenshot.h              \
 
30
        totem-gallery.c                 \
 
31
        totem-gallery.h                 \
 
32
        totem-gallery-progress.c        \
 
33
        totem-gallery-progress.h
 
34
libscreenshot_la_LDFLAGS = $(modules_flags)
 
35
libscreenshot_la_CPPFLAGS = \
 
36
        $(common_defines)               \
 
37
        -I$(top_srcdir)/src/backend     \
 
38
        -I$(top_srcdir)/plparse
 
39
 
 
40
libscreenshot_la_CFLAGS =               \
 
41
        $(DEPENDENCY_CFLAGS)            \
 
42
        $(WARN_CFLAGS)                  \
 
43
        $(AM_CFLAGS)                    \
 
44
        -I$(top_srcdir)/                \
 
45
        -I$(top_srcdir)/src             \
 
46
        -I$(top_srcdir)/src/plugins     \
 
47
        -I$(srcdir)/
 
48
 
 
49
EXTRA_DIST = $(plugin_in_files) $(ui_DATA)
 
50
 
 
51
CLEANFILES = $(plugin_DATA) $(BUILT_SOURCES)
 
52
DISTCLEANFILES = $(plugin_DATA)