~ubuntu-branches/ubuntu/utopic/inkscape/utopic-proposed

« back to all changes in this revision

Viewing changes to share/templates/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Alex Valavanis
  • Date: 2014-08-19 19:10:32 UTC
  • mfrom: (1.6.5) (2.5.14 sid)
  • Revision ID: package-import@ubuntu.com-20140819191032-2eca1qihaszjk9i6
Tags: 0.48.5-2ubuntu1
* Merge with Debian Unstable (LP: #1358863). Fixes several Ubuntu bugs:
  - Illustrator CS SVG won't load: namespace URIs in entities (LP: #166371)
  - inkscape crashed with SIGSEGV in
    sp_dtw_color_profile_event() (LP: #966441)
  - inkscape crashed with SIGSEGV (LP: #1051017)
  - inkscape crashed with SIGSEGV in Inkscape::Preferences::_getNode()
    (LP: #1163241)
  - save a copy reverts to save as (LP: #529843)
  - Extension to braille not working on Xubuntu 12.10 (LP: #1090865)
* Remaining changes:
  - debian/control:
    + Set Ubuntu Developer as maintainer,
    + build-depend on dh-translation to handle Ubuntu translation,
    + demote pstoedit from Recommends to Suggests (because it's in universe),
  - debian/patches/0006_add_unity_quicklist_support.patch: add.
  - debian/patches/series: update.
  - debian/rules:
    + add dh_translation to handle Ubuntu translation
* Drop debian/patches/librevenge.patch (superseded by
    debian/patches/0006-Update_to_new_libwpg.patch)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.11.6 from Makefile.am.
 
1
# Makefile.in generated by automake 1.14.1 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
 
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
 
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6
 
# Foundation, Inc.
 
4
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
 
5
 
7
6
# This Makefile.in is free software; the Free Software Foundation
8
7
# gives unlimited permission to copy and/or distribute it,
9
8
# with or without modifications, as long as this notice is preserved.
16
15
@SET_MAKE@
17
16
 
18
17
VPATH = @srcdir@
19
 
am__make_dryrun = \
20
 
  { \
21
 
    am__dry=no; \
 
18
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
 
19
am__make_running_with_option = \
 
20
  case $${target_option-} in \
 
21
      ?) ;; \
 
22
      *) echo "am__make_running_with_option: internal error: invalid" \
 
23
              "target option '$${target_option-}' specified" >&2; \
 
24
         exit 1;; \
 
25
  esac; \
 
26
  has_opt=no; \
 
27
  sane_makeflags=$$MAKEFLAGS; \
 
28
  if $(am__is_gnu_make); then \
 
29
    sane_makeflags=$$MFLAGS; \
 
30
  else \
22
31
    case $$MAKEFLAGS in \
23
32
      *\\[\ \   ]*) \
24
 
        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
25
 
          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
26
 
      *) \
27
 
        for am__flg in $$MAKEFLAGS; do \
28
 
          case $$am__flg in \
29
 
            *=*|--*) ;; \
30
 
            *n*) am__dry=yes; break;; \
31
 
          esac; \
32
 
        done;; \
33
 
    esac; \
34
 
    test $$am__dry = yes; \
35
 
  }
 
33
        bs=\\; \
 
34
        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
 
35
          | sed "s/$$bs$$bs[$$bs $$bs   ]*//g"`;; \
 
36
    esac; \
 
37
  fi; \
 
38
  skip_next=no; \
 
39
  strip_trailopt () \
 
40
  { \
 
41
    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
 
42
  }; \
 
43
  for flg in $$sane_makeflags; do \
 
44
    test $$skip_next = yes && { skip_next=no; continue; }; \
 
45
    case $$flg in \
 
46
      *=*|--*) continue;; \
 
47
        -*I) strip_trailopt 'I'; skip_next=yes;; \
 
48
      -*I?*) strip_trailopt 'I';; \
 
49
        -*O) strip_trailopt 'O'; skip_next=yes;; \
 
50
      -*O?*) strip_trailopt 'O';; \
 
51
        -*l) strip_trailopt 'l'; skip_next=yes;; \
 
52
      -*l?*) strip_trailopt 'l';; \
 
53
      -[dEDm]) skip_next=yes;; \
 
54
      -[JT]) skip_next=yes;; \
 
55
    esac; \
 
56
    case $$flg in \
 
57
      *$$target_option*) has_opt=yes; break;; \
 
58
    esac; \
 
59
  done; \
 
60
  test $$has_opt = yes
 
61
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
 
62
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
36
63
pkgdatadir = $(datadir)/@PACKAGE@
37
64
pkgincludedir = $(includedir)/@PACKAGE@
38
65
pkglibdir = $(libdir)/@PACKAGE@
52
79
build_triplet = @build@
53
80
host_triplet = @host@
54
81
subdir = share/templates
55
 
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
82
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
 
83
        $(top_srcdir)/mkinstalldirs README
56
84
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
57
85
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
58
86
        $(top_srcdir)/m4/ac_define_dir.m4 \
65
93
CONFIG_HEADER = $(top_builddir)/config.h
66
94
CONFIG_CLEAN_FILES =
67
95
CONFIG_CLEAN_VPATH_FILES =
 
96
AM_V_P = $(am__v_P_@AM_V@)
 
97
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
 
98
am__v_P_0 = false
 
99
am__v_P_1 = :
68
100
AM_V_GEN = $(am__v_GEN_@AM_V@)
69
101
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
70
 
am__v_GEN_0 = @echo "  GEN   " $@;
 
102
am__v_GEN_0 = @echo "  GEN     " $@;
 
103
am__v_GEN_1 = 
71
104
AM_V_at = $(am__v_at_@AM_V@)
72
105
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
73
106
am__v_at_0 = @
 
107
am__v_at_1 = 
74
108
SOURCES =
75
109
DIST_SOURCES =
76
110
am__can_run_installinfo = \
107
141
  }
108
142
am__installdirs = "$(DESTDIR)$(templatesdir)"
109
143
DATA = $(templates_DATA)
 
144
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
110
145
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
111
146
ACLOCAL = @ACLOCAL@
112
147
ALL_LINGUAS = @ALL_LINGUAS@
221
256
POPPLER_CAIRO_CFLAGS = @POPPLER_CAIRO_CFLAGS@
222
257
POPPLER_CAIRO_LIBS = @POPPLER_CAIRO_LIBS@
223
258
POPPLER_CFLAGS = @POPPLER_CFLAGS@
 
259
POPPLER_EVEN_NEWER_COLOR_SPACE_API_CFLAGS = @POPPLER_EVEN_NEWER_COLOR_SPACE_API_CFLAGS@
 
260
POPPLER_EVEN_NEWER_COLOR_SPACE_API_LIBS = @POPPLER_EVEN_NEWER_COLOR_SPACE_API_LIBS@
224
261
POPPLER_GFXFONT_CFLAGS = @POPPLER_GFXFONT_CFLAGS@
225
262
POPPLER_GFXFONT_LIBS = @POPPLER_GFXFONT_LIBS@
226
263
POPPLER_GLIB_CFLAGS = @POPPLER_GLIB_CFLAGS@
362
399
              exit 1;; \
363
400
          esac; \
364
401
        done; \
365
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/templates/Makefile'; \
 
402
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/templates/Makefile'; \
366
403
        $(am__cd) $(top_srcdir) && \
367
 
          $(AUTOMAKE) --foreign share/templates/Makefile
 
404
          $(AUTOMAKE) --gnu share/templates/Makefile
368
405
.PRECIOUS: Makefile
369
406
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
370
407
        @case '$?' in \
404
441
        @list='$(templates_DATA)'; test -n "$(templatesdir)" || list=; \
405
442
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
406
443
        dir='$(DESTDIR)$(templatesdir)'; $(am__uninstall_files_from_dir)
407
 
tags: TAGS
408
 
TAGS:
409
 
 
410
 
ctags: CTAGS
411
 
CTAGS:
 
444
tags TAGS:
 
445
 
 
446
ctags CTAGS:
 
447
 
 
448
cscope cscopelist:
412
449
 
413
450
 
414
451
distdir: $(DISTFILES)
546
583
 
547
584
.MAKE: install-am install-strip
548
585
 
549
 
.PHONY: all all-am check check-am clean clean-generic distclean \
550
 
        distclean-generic distdir dvi dvi-am html html-am info info-am \
551
 
        install install-am install-data install-data-am install-dvi \
552
 
        install-dvi-am install-exec install-exec-am install-html \
553
 
        install-html-am install-info install-info-am install-man \
554
 
        install-pdf install-pdf-am install-ps install-ps-am \
555
 
        install-strip install-templatesDATA installcheck \
556
 
        installcheck-am installdirs maintainer-clean \
 
586
.PHONY: all all-am check check-am clean clean-generic cscopelist-am \
 
587
        ctags-am distclean distclean-generic distdir dvi dvi-am html \
 
588
        html-am info info-am install install-am install-data \
 
589
        install-data-am install-dvi install-dvi-am install-exec \
 
590
        install-exec-am install-html install-html-am install-info \
 
591
        install-info-am install-man install-pdf install-pdf-am \
 
592
        install-ps install-ps-am install-strip install-templatesDATA \
 
593
        installcheck installcheck-am installdirs maintainer-clean \
557
594
        maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
558
 
        pdf-am ps ps-am uninstall uninstall-am uninstall-templatesDATA
 
595
        pdf-am ps ps-am tags-am uninstall uninstall-am \
 
596
        uninstall-templatesDATA
559
597
 
560
598
 
561
599
# Tell versions [3.59,3.63) of GNU make to not export all variables.