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

« back to all changes in this revision

Viewing changes to share/icons/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/icons
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
 
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
77
 
        html-recursive info-recursive install-data-recursive \
78
 
        install-dvi-recursive install-exec-recursive \
79
 
        install-html-recursive install-info-recursive \
80
 
        install-pdf-recursive install-ps-recursive install-recursive \
81
 
        installcheck-recursive installdirs-recursive pdf-recursive \
82
 
        ps-recursive uninstall-recursive
 
110
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
 
111
        ctags-recursive dvi-recursive html-recursive info-recursive \
 
112
        install-data-recursive install-dvi-recursive \
 
113
        install-exec-recursive install-html-recursive \
 
114
        install-info-recursive install-pdf-recursive \
 
115
        install-ps-recursive install-recursive installcheck-recursive \
 
116
        installdirs-recursive pdf-recursive ps-recursive \
 
117
        tags-recursive uninstall-recursive
83
118
am__can_run_installinfo = \
84
119
  case $$AM_UPDATE_INFO_DIR in \
85
120
    n|no|NO) false;; \
116
151
DATA = $(icons_DATA)
117
152
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
118
153
  distclean-recursive maintainer-clean-recursive
119
 
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
120
 
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
154
am__recursive_targets = \
 
155
  $(RECURSIVE_TARGETS) \
 
156
  $(RECURSIVE_CLEAN_TARGETS) \
 
157
  $(am__extra_recursive_targets)
 
158
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
121
159
        distdir
 
160
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
 
161
# Read a list of newline-separated strings from the standard input,
 
162
# and print each of them once, without duplicates.  Input order is
 
163
# *not* preserved.
 
164
am__uniquify_input = $(AWK) '\
 
165
  BEGIN { nonempty = 0; } \
 
166
  { items[$$0] = 1; nonempty = 1; } \
 
167
  END { if (nonempty) { for (i in items) print i; }; } \
 
168
'
 
169
# Make sure the list of sources is unique.  This is necessary because,
 
170
# e.g., the same source file might be shared among _SOURCES variables
 
171
# for different programs/libraries.
 
172
am__define_uniq_tagged_files = \
 
173
  list='$(am__tagged_files)'; \
 
174
  unique=`for i in $$list; do \
 
175
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
 
176
  done | $(am__uniquify_input)`
122
177
ETAGS = etags
123
178
CTAGS = ctags
124
179
DIST_SUBDIRS = $(SUBDIRS)
261
316
POPPLER_CAIRO_CFLAGS = @POPPLER_CAIRO_CFLAGS@
262
317
POPPLER_CAIRO_LIBS = @POPPLER_CAIRO_LIBS@
263
318
POPPLER_CFLAGS = @POPPLER_CFLAGS@
 
319
POPPLER_EVEN_NEWER_COLOR_SPACE_API_CFLAGS = @POPPLER_EVEN_NEWER_COLOR_SPACE_API_CFLAGS@
 
320
POPPLER_EVEN_NEWER_COLOR_SPACE_API_LIBS = @POPPLER_EVEN_NEWER_COLOR_SPACE_API_LIBS@
264
321
POPPLER_GFXFONT_CFLAGS = @POPPLER_GFXFONT_CFLAGS@
265
322
POPPLER_GFXFONT_LIBS = @POPPLER_GFXFONT_LIBS@
266
323
POPPLER_GLIB_CFLAGS = @POPPLER_GLIB_CFLAGS@
402
459
              exit 1;; \
403
460
          esac; \
404
461
        done; \
405
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/icons/Makefile'; \
 
462
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/icons/Makefile'; \
406
463
        $(am__cd) $(top_srcdir) && \
407
 
          $(AUTOMAKE) --foreign share/icons/Makefile
 
464
          $(AUTOMAKE) --gnu share/icons/Makefile
408
465
.PRECIOUS: Makefile
409
466
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
410
467
        @case '$?' in \
446
503
        dir='$(DESTDIR)$(iconsdir)'; $(am__uninstall_files_from_dir)
447
504
 
448
505
# This directory's subdirectories are mostly independent; you can cd
449
 
# into them and run `make' without going through this Makefile.
450
 
# To change the values of `make' variables: instead of editing Makefiles,
451
 
# (1) if the variable is set in `config.status', edit `config.status'
452
 
#     (which will cause the Makefiles to be regenerated when you run `make');
453
 
# (2) otherwise, pass the desired values on the `make' command line.
454
 
$(RECURSIVE_TARGETS):
455
 
        @fail= failcom='exit 1'; \
456
 
        for f in x $$MAKEFLAGS; do \
457
 
          case $$f in \
458
 
            *=* | --[!k]*);; \
459
 
            *k*) failcom='fail=yes';; \
460
 
          esac; \
461
 
        done; \
 
506
# into them and run 'make' without going through this Makefile.
 
507
# To change the values of 'make' variables: instead of editing Makefiles,
 
508
# (1) if the variable is set in 'config.status', edit 'config.status'
 
509
#     (which will cause the Makefiles to be regenerated when you run 'make');
 
510
# (2) otherwise, pass the desired values on the 'make' command line.
 
511
$(am__recursive_targets):
 
512
        @fail=; \
 
513
        if $(am__make_keepgoing); then \
 
514
          failcom='fail=yes'; \
 
515
        else \
 
516
          failcom='exit 1'; \
 
517
        fi; \
462
518
        dot_seen=no; \
463
519
        target=`echo $@ | sed s/-recursive//`; \
464
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
 
520
        case "$@" in \
 
521
          distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 
522
          *) list='$(SUBDIRS)' ;; \
 
523
        esac; \
 
524
        for subdir in $$list; do \
465
525
          echo "Making $$target in $$subdir"; \
466
526
          if test "$$subdir" = "."; then \
467
527
            dot_seen=yes; \
476
536
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
477
537
        fi; test -z "$$fail"
478
538
 
479
 
$(RECURSIVE_CLEAN_TARGETS):
480
 
        @fail= failcom='exit 1'; \
481
 
        for f in x $$MAKEFLAGS; do \
482
 
          case $$f in \
483
 
            *=* | --[!k]*);; \
484
 
            *k*) failcom='fail=yes';; \
485
 
          esac; \
486
 
        done; \
487
 
        dot_seen=no; \
488
 
        case "$@" in \
489
 
          distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
490
 
          *) list='$(SUBDIRS)' ;; \
491
 
        esac; \
492
 
        rev=''; for subdir in $$list; do \
493
 
          if test "$$subdir" = "."; then :; else \
494
 
            rev="$$subdir $$rev"; \
495
 
          fi; \
496
 
        done; \
497
 
        rev="$$rev ."; \
498
 
        target=`echo $@ | sed s/-recursive//`; \
499
 
        for subdir in $$rev; do \
500
 
          echo "Making $$target in $$subdir"; \
501
 
          if test "$$subdir" = "."; then \
502
 
            local_target="$$target-am"; \
503
 
          else \
504
 
            local_target="$$target"; \
505
 
          fi; \
506
 
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
507
 
          || eval $$failcom; \
508
 
        done && test -z "$$fail"
509
 
tags-recursive:
510
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
511
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
512
 
        done
513
 
ctags-recursive:
514
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
515
 
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
516
 
        done
517
 
 
518
 
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
519
 
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
520
 
        unique=`for i in $$list; do \
521
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
522
 
          done | \
523
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
524
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
525
 
        mkid -fID $$unique
526
 
tags: TAGS
527
 
 
528
 
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
529
 
                $(TAGS_FILES) $(LISP)
 
539
ID: $(am__tagged_files)
 
540
        $(am__define_uniq_tagged_files); mkid -fID $$unique
 
541
tags: tags-recursive
 
542
TAGS: tags
 
543
 
 
544
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
530
545
        set x; \
531
546
        here=`pwd`; \
532
547
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
542
557
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
543
558
          fi; \
544
559
        done; \
545
 
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
546
 
        unique=`for i in $$list; do \
547
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
548
 
          done | \
549
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
550
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
560
        $(am__define_uniq_tagged_files); \
551
561
        shift; \
552
562
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
553
563
          test -n "$$unique" || unique=$$empty_fix; \
559
569
              $$unique; \
560
570
          fi; \
561
571
        fi
562
 
ctags: CTAGS
563
 
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
564
 
                $(TAGS_FILES) $(LISP)
565
 
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
566
 
        unique=`for i in $$list; do \
567
 
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
568
 
          done | \
569
 
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
570
 
              END { if (nonempty) { for (i in files) print i; }; }'`; \
 
572
ctags: ctags-recursive
 
573
 
 
574
CTAGS: ctags
 
575
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
 
576
        $(am__define_uniq_tagged_files); \
571
577
        test -z "$(CTAGS_ARGS)$$unique" \
572
578
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
573
579
             $$unique
576
582
        here=`$(am__cd) $(top_builddir) && pwd` \
577
583
          && $(am__cd) $(top_srcdir) \
578
584
          && gtags -i $(GTAGS_ARGS) "$$here"
 
585
cscopelist: cscopelist-recursive
 
586
 
 
587
cscopelist-am: $(am__tagged_files)
 
588
        list='$(am__tagged_files)'; \
 
589
        case "$(srcdir)" in \
 
590
          [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
 
591
          *) sdir=$(subdir)/$(srcdir) ;; \
 
592
        esac; \
 
593
        for i in $$list; do \
 
594
          if test -f "$$i"; then \
 
595
            echo "$(subdir)/$$i"; \
 
596
          else \
 
597
            echo "$$sdir/$$i"; \
 
598
          fi; \
 
599
        done >> $(top_builddir)/cscope.files
579
600
 
580
601
distclean-tags:
581
602
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
739
760
 
740
761
uninstall-am: uninstall-iconsDATA
741
762
 
742
 
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
743
 
        install-am install-strip tags-recursive
 
763
.MAKE: $(am__recursive_targets) install-am install-strip
744
764
 
745
 
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
746
 
        all all-am check check-am clean clean-generic ctags \
747
 
        ctags-recursive distclean distclean-generic distclean-tags \
748
 
        distdir dvi dvi-am html html-am info info-am install \
749
 
        install-am install-data install-data-am install-dvi \
750
 
        install-dvi-am install-exec install-exec-am install-html \
751
 
        install-html-am install-iconsDATA install-info install-info-am \
752
 
        install-man install-pdf install-pdf-am install-ps \
753
 
        install-ps-am install-strip installcheck installcheck-am \
754
 
        installdirs installdirs-am maintainer-clean \
755
 
        maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
756
 
        pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
757
 
        uninstall-iconsDATA
 
765
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
 
766
        check-am clean clean-generic cscopelist-am ctags ctags-am \
 
767
        distclean distclean-generic distclean-tags distdir dvi dvi-am \
 
768
        html html-am info info-am install install-am install-data \
 
769
        install-data-am install-dvi install-dvi-am install-exec \
 
770
        install-exec-am install-html install-html-am install-iconsDATA \
 
771
        install-info install-info-am install-man install-pdf \
 
772
        install-pdf-am install-ps install-ps-am install-strip \
 
773
        installcheck installcheck-am installdirs installdirs-am \
 
774
        maintainer-clean maintainer-clean-generic mostlyclean \
 
775
        mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
 
776
        uninstall-am uninstall-iconsDATA
758
777
 
759
778
 
760
779
# Tell versions [3.59,3.63) of GNU make to not export all variables.