~noskcaj/ubuntu/utopic/eog-plugins/merge

« back to all changes in this revision

Viewing changes to plugins/exif-display/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2013-06-06 07:38:51 UTC
  • mfrom: (1.3.7)
  • Revision ID: package-import@ubuntu.com-20130606073851-mhz2bdrti5sducrv
Tags: 3.8.1-1
* New upstream release.
* Bump required version of eog to (>= 3.5.5), libgtk-3-dev to (>= 3.3.8) and
  libglib2.0-dev to (>= 2.32.0).
* Bump Standards-Version to 3.9.4. No further changes.
* Add Build-Depends on autotools-dev as lintian was complaining about
  outdated config.{guess,sub}.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
plugin_LTLIBRARIES = libexif-display.la
14
14
 
 
15
BUILT_SOURCES = \
 
16
        eog-exif-display-plugin-resources.c
 
17
 
15
18
libexif_display_la_SOURCES = \
 
19
        ${BUILT_SOURCES}                                \
16
20
        eog-exif-display-plugin.h                       \
17
21
        eog-exif-display-plugin.c                       \
18
22
        eog-exif-display-plugin-settings.h              \
22
26
libexif_display_la_LDFLAGS = \
23
27
        -avoid-version -module
24
28
 
25
 
libexif_display_la_LIBADD = $(EOG_LIBS)                 \
 
29
libexif_display_la_LIBADD = \
 
30
        $(EOG_LIBS)             \
26
31
        $(EXIFDISPLAY_LIBS)
27
32
 
 
33
eog-exif-display-plugin-resources.c: eog-exif-display-plugin.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/eog-exif-display-plugin.gresource.xml)
 
34
        $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --internal --target=$@ --sourcedir=$(srcdir) --generate-source $(srcdir)/eog-exif-display-plugin.gresource.xml
 
35
 
28
36
# Plugin Info
29
37
 
30
38
plugin_in_files = exif-display.plugin.desktop.in
31
39
 
32
 
UI_FILES = exif-display.ui exif-display-config.ui
33
 
ui_DATA = $(UI_FILES)
34
 
 
35
40
%.plugin: %.plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(AM_V_GEN)$(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
36
41
 
37
42
plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin)
42
47
 
43
48
EXTRA_DIST = \
44
49
        $(plugin_in_files)      \
45
 
        $(UI_FILES)             \
 
50
        exif-display.ui         \
 
51
        exif-display-config.ui  \
 
52
        eog-exif-display-plugin.gresource.xml   \
46
53
        org.gnome.eog.plugins.exif-display.gschema.xml.in.in
47
54
 
48
 
CLEANFILES = $(plugin_DATA) $(gsettings_SCHEMAS)
49
 
DISTCLEANFILES = $(plugin_DATA) $(gsettings_SCHEMAS)
 
55
CLEANFILES = \
 
56
        ${BUILT_SOURCES}        \
 
57
        $(plugin_DATA)          \
 
58
        $(gsettings_SCHEMAS)
 
59
 
 
60
DISTCLEANFILES = \
 
61
        ${BUILT_SOURCES}        \
 
62
        $(plugin_DATA)          \
 
63
        $(gsettings_SCHEMAS)
 
64
 
50
65
MAINTAINERCLEANFILES = $(gsettings_SCHEMAS:.xml=.valid)
51
66
 
52
67
-include $(top_srcdir)/git.mk