~ubuntu-branches/ubuntu/natty/exif/natty

« back to all changes in this revision

Viewing changes to exif/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Emmanuel Bouthenot
  • Date: 2008-03-31 19:39:44 UTC
  • mfrom: (4.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080331193944-xndxlofl9m7h7a83
Tags: 0.6.15-5
* Adopt the package within pkg-phototools:
  - Set the Maintainer to the group
  - Add Frederic Peters and myself as Uploaders.
  - Add Vcs-Browser and Vcs-Git fields accordingly.
* debian/control:
  - Add a Homepage field.
  - Update Standards-Version to 3.7.3
  - Fix build dep version for libexif-dev.
  - Add build dep on quilt for patches extracted from package diff.
  - Add build dep on gettext for swedish translation.
* debian/copyright:
  - convert file to utf-8.
  - Point to LGPL-2 rather than just LGPL, which now points to
    LGPL-3.
* debian/rules
  - Fix autotools timestamp issues which causes FTBFS (closes: #445609)
  - Fix lintian 'clean error' warning.
* debian/patches
  - Extract swedish translation patch from package diff (cf. bug 397370).
  - Extract patch related to default ifd from package diff (cf. bug 428255).
  - Extract patch related to manpage improvements from package diff (cf.
    bugs 320497 and 321855).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
INCLUDES =                                              \
2
 
        -I$(top_srcdir)                                 \
3
 
        -I$(top_srcdir)/intl                            \
4
 
        -DEXIF_LOCALEDIR=\""$(datadir)/locale"\"        \
5
 
        $(LIBEXIF_CFLAGS) $(LIBMNOTE_CFLAGS)            \
6
 
        $(POPT_CFLAGS)
 
1
# The actual "exif" program
7
2
 
8
3
bin_PROGRAMS = exif
9
4
 
12
7
        exif-i18n.h exif-i18n.c \
13
8
        main.c                  \
14
9
        utils.h utils.c
15
 
exif_LDADD =                                    \
16
 
        ../libjpeg/libjpeg.la                   \
17
 
        $(LIBEXIF_LIBS) $(LIBMNOTE_LIBS)        \
 
10
exif_CPPFLAGS = \
 
11
        $(AM_CPPFLAGS) $(CPPFLAGS)              \
 
12
        $(LIBEXIF_CFLAGS)                       \
 
13
        $(POPT_CFLAGS)
 
14
exif_LDADD = \
 
15
        $(AM_LDFLAGS) $(LDFLAGS)                \
 
16
        $(top_builddir)/libjpeg/libjpeg.la      \
 
17
        $(LIBEXIF_LIBS)                         \
18
18
        $(POPT_LIBS)                            \
19
19
        $(INTLLIBS)
 
20
 
 
21
# And a few very simple tests
 
22
 
 
23
check_SCRIPTS = check-param-validity.sh
 
24
 
 
25
EXTRA_DIST = check-param-validity.in
 
26
 
 
27
TESTS = $(check_SCRIPTS)
 
28
 
 
29
.in.sh:
 
30
        sed 's|@exif\@|./exif$(EXEEXT)|g' < $< > $@
 
31
        chmod +x $@
 
32
 
 
33
CLEANFILES = $(check_SCRIPTS)