~ubuntu-branches/ubuntu/wily/nautilus-image-converter/wily

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Package Import Robot
  • Author(s): Julien Lavergne
  • Date: 2011-09-10 16:09:59 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: package-import@ubuntu.com-20110910160959-ahrepq7s5xiojjdo
Tags: 0.3.1~git20110416-0ubuntu1
* New upstream snapshot to build against GTK3 and to be compatible with
  nautilus >= 3.0.0 (LP: #832792, #842142).
* debian/control:
 - Update location of upstream code.
 - Bump build-depends on libnautilus-extension-dev (>= 3.0.0) and
   libglib2.0-dev (>= 2.28.0).
 - Build-depends on libgtk-3-dev.
 - Build-depends on intltool.
* debian/patches: 
 - 00-fix_ltmain.sh.patch: Refresh.
 - 01-fix_gcc_options.patch: Remove, merged upstream.
 - 02-bulgarian_translation.patch: Remove, merged upstream.
 - 03-catalan_translation.patch: Remove, merged upstream.
 - 04-german_translation.patch: Remove, merged upstream.
 - 08-fix-spanish-translation.patch: Update, hopefully fix
   definitely LP: #489337 .
* debian/rules:
 - Don't ship .la files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
NULL =
2
 
 
3
 
SUBDIRS = \
4
 
        po \
5
 
        src \
6
 
        $(NULL)
7
 
 
8
 
EXTRA_DIST = \
9
 
        intltool-extract.in \
10
 
        intltool-update.in \
11
 
        intltool-merge.in \
12
 
        $(NULL)
13
 
 
14
 
DISTCLEANFILES = \
15
 
        intltool-extract \
16
 
        intltool-update \
17
 
        intltool-merge \
18
 
        po/.intltool-merge-cache \
19
 
        $(NULL)
 
1
SUBDIRS = data src po
 
2
 
 
3
DISTCHECK_CONFIGURE_FLAGS = --with-nautilusdir='$${libdir}/nautilus/extensions-2.0-distcheck'
 
4
 
 
5
ACLOCAL_AMFLAGS = -I m4
 
6
 
 
7
INTLTOOL =                      \
 
8
        intltool-extract.in     \
 
9
        intltool-merge.in       \
 
10
        intltool-update.in
 
11
 
 
12
EXTRA_DIST =                    \
 
13
        ChangeLog               \
 
14
        AUTHORS                 \
 
15
        NEWS                    \
 
16
        $(INTLTOOL)
 
17
 
 
18
DISTCLEANFILES =                \
 
19
        intltool-extract        \
 
20
        intltool-merge          \
 
21
        intltool-update
20
22