~ubuntu-branches/ubuntu/raring/tumbler/raring-proposed

« back to all changes in this revision

Viewing changes to .pc/01_fix-link-lm.patch/plugins/raw-thumbnailer/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Lionel Le Folgoc
  • Date: 2012-03-30 22:21:12 UTC
  • mfrom: (1.2.3)
  • Revision ID: package-import@ubuntu.com-20120330222112-ktz1vv4t1ye3d1t1
Tags: 0.1.24-0ubuntu1
* New upstream bugfix and translation release.
* debian/patches:
  - 01_fix-link-lm and 02_fix-link-gmodule removed, included upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# vi:set ts=8 sw=8 noet ai nocindent:
2
 
# -
3
 
# Copyright (c) 2011 Nick Schermer <nick@xfce.org>
4
 
5
 
# This program is free software; you can redistribute it and/or 
6
 
# modify it under the terms of the GNU General Public License as
7
 
# published by the Free Software Foundation; either version 2 of 
8
 
# the License, or (at your option) any later version.
9
 
10
 
# This program is distributed in the hope that it will be useful,
11
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
13
 
# GNU General Public License for more details.
14
 
15
 
# You should have received a copy of the GNU General Public 
16
 
# License along with this program; if not, write to the Free 
17
 
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18
 
# Boston, MA 02110-1301, USA.
19
 
 
20
 
if TUMBLER_RAW_THUMBNAILER
21
 
 
22
 
tumbler_plugindir = $(libdir)/tumbler-$(TUMBLER_VERSION_API)/plugins
23
 
tumbler_plugin_LTLIBRARIES =                                            \
24
 
        tumbler-raw-thumbnailer.la
25
 
 
26
 
tumbler_raw_thumbnailer_la_SOURCES =                                    \
27
 
        raw-thumbnailer-plugin.c                                        \
28
 
        raw-thumbnailer-provider.c                                      \
29
 
        raw-thumbnailer-provider.h                                      \
30
 
        raw-thumbnailer.c                                               \
31
 
        raw-thumbnailer.h
32
 
 
33
 
tumbler_raw_thumbnailer_la_CFLAGS =                                     \
34
 
        -I$(top_builddir)                                               \
35
 
        -I$(top_builddir)/plugins                                       \
36
 
        -I$(top_srcdir)                                                 \
37
 
        -I$(top_srcdir)/plugins                                         \
38
 
        -DG_LOG_DOMAIN=\"tumbler-raw-thumbnailer\"                      \
39
 
        -DPACKAGE_LOCALE_DIR=\"$(localedir)\"                           \
40
 
        $(GDK_PIXBUF_CFLAGS)                                            \
41
 
        $(GIO_CFLAGS)                                                   \
42
 
        $(GLIB_CFLAGS)                                                  \
43
 
        $(LIBOPENRAW_GNOME_CFLAGS)                                      \
44
 
        $(PLATFORM_CPPFLAGS)
45
 
 
46
 
tumbler_raw_thumbnailer_la_LDFLAGS =                                    \
47
 
        -avoid-version                                                  \
48
 
        -export-dynamic                                                 \
49
 
        -module                                                         \
50
 
        $(PLATFORM_LDFLAGS)
51
 
 
52
 
tumbler_raw_thumbnailer_la_LIBADD =                                     \
53
 
        $(top_builddir)/tumbler/libtumbler-$(TUMBLER_VERSION_API).la    \
54
 
        $(GDK_PIXBUF_LIBS)                                              \
55
 
        $(GIO_LIBS)                                                     \
56
 
        $(GLIB_LIBS)                                                    \
57
 
        $(LIBOPENRAW_GNOME_LIBS)
58
 
 
59
 
tumbler_raw_thumbnailer_la_DEPENDENCIES =                               \
60
 
        $(top_builddir)/tumbler/libtumbler-$(TUMBLER_VERSION_API).la
61
 
 
62
 
endif