Merge lp:~noskcaj/ubuntu/vivid/hicolor-icon-theme/0.14 into lp:ubuntu/vivid/hicolor-icon-theme

Proposed by Jackson Doak
Status: Needs review
Proposed branch: lp:~noskcaj/ubuntu/vivid/hicolor-icon-theme/0.14
Merge into: lp:ubuntu/vivid/hicolor-icon-theme
Diff against target: 3356 lines (+2836/-288)
12 files modified
Makefile.am (+23/-0)
Makefile.in (+593/-38)
aclocal.m4 (+754/-0)
autogen.sh (+61/-0)
configure (+665/-10)
configure.ac (+2/-2)
debian/changelog (+7/-0)
debian/control (+2/-1)
debian/control.in (+2/-1)
debian/watch (+2/-2)
install-sh (+510/-234)
missing (+215/-0)
To merge this branch: bzr merge lp:~noskcaj/ubuntu/vivid/hicolor-icon-theme/0.14
Reviewer Review Type Date Requested Status
Daniel Holbach (community) Approve
Review via email: mp+245453@code.launchpad.net

Description of the change

New upstream release. Better cross-building support + 512x512 icon directory added

To post a comment you must log in.
Revision history for this message
Daniel Holbach (dholbach) wrote :

Thanks. Uploaded.

review: Approve

Unmerged revisions

17. By Jackson Doak

* New upstream release.
* debian/watch: Upstream now uses .xz

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file 'Makefile.am'
2--- Makefile.am 1970-01-01 00:00:00 +0000
3+++ Makefile.am 2014-12-30 20:20:45 +0000
4@@ -0,0 +1,23 @@
5+ICON_SIZES = 16x16 22x22 24x24 32x32 36x36 48x48 64x64 72x72 96x96 \
6+ 128x128 192x192 256x256 512x512 scalable
7+ICON_CONTEXTS = actions animations apps categories devices emblems emotes \
8+ filesystems intl mimetypes places status stock
9+STOCK_SUBS = chart code data form image io media navigation net object table text
10+
11+themedir = $(datadir)/icons/hicolor
12+dist_theme_DATA = index.theme
13+
14+EXTRA_DIST = COPYING README autogen.sh
15+
16+install-data-hook:
17+ mkdir -p $(DESTDIR)$(themedir)
18+ for dir in $(ICON_SIZES); do \
19+ for ctxt in $(ICON_CONTEXTS); do \
20+ mkdir -p $(DESTDIR)$(themedir)/$$dir/$$ctxt; \
21+ if [ "$$ctxt" = "stock" ]; then \
22+ for sub in $(STOCK_SUBS); do \
23+ mkdir -p $(DESTDIR)$(themedir)/$$dir/$$ctxt/$$sub; \
24+ done \
25+ fi \
26+ done \
27+ done
28
29=== modified file 'Makefile.in'
30--- Makefile.in 2010-09-08 19:52:22 +0000
31+++ Makefile.in 2014-12-30 20:20:45 +0000
32@@ -1,53 +1,608 @@
33-PACKAGE = @PACKAGE_TARNAME@
34-VERSION = @PACKAGE_VERSION@
35-prefix = @prefix@
36-datarootdir = @datarootdir@
37-datadir = @datadir@
38+# Makefile.in generated by automake 1.14.1 from Makefile.am.
39+# @configure_input@
40+
41+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
42+
43+# This Makefile.in is free software; the Free Software Foundation
44+# gives unlimited permission to copy and/or distribute it,
45+# with or without modifications, as long as this notice is preserved.
46+
47+# This program is distributed in the hope that it will be useful,
48+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
49+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
50+# PARTICULAR PURPOSE.
51+
52+@SET_MAKE@
53+
54+VPATH = @srcdir@
55+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
56+am__make_running_with_option = \
57+ case $${target_option-} in \
58+ ?) ;; \
59+ *) echo "am__make_running_with_option: internal error: invalid" \
60+ "target option '$${target_option-}' specified" >&2; \
61+ exit 1;; \
62+ esac; \
63+ has_opt=no; \
64+ sane_makeflags=$$MAKEFLAGS; \
65+ if $(am__is_gnu_make); then \
66+ sane_makeflags=$$MFLAGS; \
67+ else \
68+ case $$MAKEFLAGS in \
69+ *\\[\ \ ]*) \
70+ bs=\\; \
71+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
72+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
73+ esac; \
74+ fi; \
75+ skip_next=no; \
76+ strip_trailopt () \
77+ { \
78+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
79+ }; \
80+ for flg in $$sane_makeflags; do \
81+ test $$skip_next = yes && { skip_next=no; continue; }; \
82+ case $$flg in \
83+ *=*|--*) continue;; \
84+ -*I) strip_trailopt 'I'; skip_next=yes;; \
85+ -*I?*) strip_trailopt 'I';; \
86+ -*O) strip_trailopt 'O'; skip_next=yes;; \
87+ -*O?*) strip_trailopt 'O';; \
88+ -*l) strip_trailopt 'l'; skip_next=yes;; \
89+ -*l?*) strip_trailopt 'l';; \
90+ -[dEDm]) skip_next=yes;; \
91+ -[JT]) skip_next=yes;; \
92+ esac; \
93+ case $$flg in \
94+ *$$target_option*) has_opt=yes; break;; \
95+ esac; \
96+ done; \
97+ test $$has_opt = yes
98+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
99+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
100+pkgdatadir = $(datadir)/@PACKAGE@
101+pkgincludedir = $(includedir)/@PACKAGE@
102+pkglibdir = $(libdir)/@PACKAGE@
103+pkglibexecdir = $(libexecdir)/@PACKAGE@
104+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
105+install_sh_DATA = $(install_sh) -c -m 644
106+install_sh_PROGRAM = $(install_sh) -c
107+install_sh_SCRIPT = $(install_sh) -c
108+INSTALL_HEADER = $(INSTALL_DATA)
109+transform = $(program_transform_name)
110+NORMAL_INSTALL = :
111+PRE_INSTALL = :
112+POST_INSTALL = :
113+NORMAL_UNINSTALL = :
114+PRE_UNINSTALL = :
115+POST_UNINSTALL = :
116+subdir = .
117+DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
118+ $(top_srcdir)/configure $(am__configure_deps) \
119+ $(dist_theme_DATA) COPYING ChangeLog README install-sh missing
120+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
121+am__aclocal_m4_deps = $(top_srcdir)/configure.ac
122+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
123+ $(ACLOCAL_M4)
124+am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
125+ configure.lineno config.status.lineno
126+mkinstalldirs = $(install_sh) -d
127+CONFIG_CLEAN_FILES =
128+CONFIG_CLEAN_VPATH_FILES =
129+AM_V_P = $(am__v_P_@AM_V@)
130+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
131+am__v_P_0 = false
132+am__v_P_1 = :
133+AM_V_GEN = $(am__v_GEN_@AM_V@)
134+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
135+am__v_GEN_0 = @echo " GEN " $@;
136+am__v_GEN_1 =
137+AM_V_at = $(am__v_at_@AM_V@)
138+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
139+am__v_at_0 = @
140+am__v_at_1 =
141+SOURCES =
142+DIST_SOURCES =
143+am__can_run_installinfo = \
144+ case $$AM_UPDATE_INFO_DIR in \
145+ n|no|NO) false;; \
146+ *) (install-info --version) >/dev/null 2>&1;; \
147+ esac
148+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
149+am__vpath_adj = case $$p in \
150+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
151+ *) f=$$p;; \
152+ esac;
153+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
154+am__install_max = 40
155+am__nobase_strip_setup = \
156+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
157+am__nobase_strip = \
158+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
159+am__nobase_list = $(am__nobase_strip_setup); \
160+ for p in $$list; do echo "$$p $$p"; done | \
161+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
162+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
163+ if (++n[$$2] == $(am__install_max)) \
164+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
165+ END { for (dir in files) print dir, files[dir] }'
166+am__base_list = \
167+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
168+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
169+am__uninstall_files_from_dir = { \
170+ test -z "$$files" \
171+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
172+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
173+ $(am__cd) "$$dir" && rm -f $$files; }; \
174+ }
175+am__installdirs = "$(DESTDIR)$(themedir)"
176+DATA = $(dist_theme_DATA)
177+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
178+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
179+distdir = $(PACKAGE)-$(VERSION)
180+top_distdir = $(distdir)
181+am__remove_distdir = \
182+ if test -d "$(distdir)"; then \
183+ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
184+ && rm -rf "$(distdir)" \
185+ || { sleep 5 && rm -rf "$(distdir)"; }; \
186+ else :; fi
187+am__post_remove_distdir = $(am__remove_distdir)
188+GZIP_ENV = --best
189+DIST_ARCHIVES = $(distdir).tar.xz
190+DIST_TARGETS = dist-xz
191+distuninstallcheck_listfiles = find . -type f -print
192+am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
193+ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
194+distcleancheck_listfiles = find . -type f -print
195+ACLOCAL = @ACLOCAL@
196+AMTAR = @AMTAR@
197+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
198+AUTOCONF = @AUTOCONF@
199+AUTOHEADER = @AUTOHEADER@
200+AUTOMAKE = @AUTOMAKE@
201+AWK = @AWK@
202+CYGPATH_W = @CYGPATH_W@
203+DEFS = @DEFS@
204+ECHO_C = @ECHO_C@
205+ECHO_N = @ECHO_N@
206+ECHO_T = @ECHO_T@
207 INSTALL = @INSTALL@
208 INSTALL_DATA = @INSTALL_DATA@
209-
210-distdir = $(PACKAGE)-$(VERSION)
211-FILES = README Makefile.in configure.ac configure install-sh index.theme ChangeLog COPYING
212-
213+INSTALL_PROGRAM = @INSTALL_PROGRAM@
214+INSTALL_SCRIPT = @INSTALL_SCRIPT@
215+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
216+LIBOBJS = @LIBOBJS@
217+LIBS = @LIBS@
218+LTLIBOBJS = @LTLIBOBJS@
219+MAKEINFO = @MAKEINFO@
220+MKDIR_P = @MKDIR_P@
221+PACKAGE = @PACKAGE@
222+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
223+PACKAGE_NAME = @PACKAGE_NAME@
224+PACKAGE_STRING = @PACKAGE_STRING@
225+PACKAGE_TARNAME = @PACKAGE_TARNAME@
226+PACKAGE_URL = @PACKAGE_URL@
227+PACKAGE_VERSION = @PACKAGE_VERSION@
228+PATH_SEPARATOR = @PATH_SEPARATOR@
229+SET_MAKE = @SET_MAKE@
230+SHELL = @SHELL@
231+STRIP = @STRIP@
232+VERSION = @VERSION@
233+abs_builddir = @abs_builddir@
234+abs_srcdir = @abs_srcdir@
235+abs_top_builddir = @abs_top_builddir@
236+abs_top_srcdir = @abs_top_srcdir@
237+am__leading_dot = @am__leading_dot@
238+am__tar = @am__tar@
239+am__untar = @am__untar@
240+bindir = @bindir@
241+build_alias = @build_alias@
242+builddir = @builddir@
243+datadir = @datadir@
244+datarootdir = @datarootdir@
245+docdir = @docdir@
246+dvidir = @dvidir@
247+exec_prefix = @exec_prefix@
248+host_alias = @host_alias@
249+htmldir = @htmldir@
250+includedir = @includedir@
251+infodir = @infodir@
252+install_sh = @install_sh@
253+libdir = @libdir@
254+libexecdir = @libexecdir@
255+localedir = @localedir@
256+localstatedir = @localstatedir@
257+mandir = @mandir@
258+mkdir_p = @mkdir_p@
259+oldincludedir = @oldincludedir@
260+pdfdir = @pdfdir@
261+prefix = @prefix@
262+program_transform_name = @program_transform_name@
263+psdir = @psdir@
264+sbindir = @sbindir@
265+sharedstatedir = @sharedstatedir@
266+srcdir = @srcdir@
267+sysconfdir = @sysconfdir@
268+target_alias = @target_alias@
269+top_build_prefix = @top_build_prefix@
270+top_builddir = @top_builddir@
271+top_srcdir = @top_srcdir@
272 ICON_SIZES = 16x16 22x22 24x24 32x32 36x36 48x48 64x64 72x72 96x96 \
273- 128x128 192x192 256x256 scalable
274-ICON_CONTEXTS = actions animations apps categories devices emblems emotes filesystems intl mimetypes places status stock
275+ 128x128 192x192 256x256 512x512 scalable
276+
277+ICON_CONTEXTS = actions animations apps categories devices emblems emotes \
278+ filesystems intl mimetypes places status stock
279+
280 STOCK_SUBS = chart code data form image io media navigation net object table text
281+themedir = $(datadir)/icons/hicolor
282+dist_theme_DATA = index.theme
283+EXTRA_DIST = COPYING README autogen.sh
284+all: all-am
285
286-all:
287+.SUFFIXES:
288+am--refresh: Makefile
289 @:
290-
291-install:
292- mkdir -p $(DESTDIR)$(datadir)/icons/hicolor
293- $(INSTALL_DATA) index.theme $(DESTDIR)$(datadir)/icons/hicolor
294+$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
295+ @for dep in $?; do \
296+ case '$(am__configure_deps)' in \
297+ *$$dep*) \
298+ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
299+ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
300+ && exit 0; \
301+ exit 1;; \
302+ esac; \
303+ done; \
304+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
305+ $(am__cd) $(top_srcdir) && \
306+ $(AUTOMAKE) --foreign Makefile
307+.PRECIOUS: Makefile
308+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
309+ @case '$?' in \
310+ *config.status*) \
311+ echo ' $(SHELL) ./config.status'; \
312+ $(SHELL) ./config.status;; \
313+ *) \
314+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
315+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
316+ esac;
317+
318+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
319+ $(SHELL) ./config.status --recheck
320+
321+$(top_srcdir)/configure: $(am__configure_deps)
322+ $(am__cd) $(srcdir) && $(AUTOCONF)
323+$(ACLOCAL_M4): $(am__aclocal_m4_deps)
324+ $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
325+$(am__aclocal_m4_deps):
326+install-dist_themeDATA: $(dist_theme_DATA)
327+ @$(NORMAL_INSTALL)
328+ @list='$(dist_theme_DATA)'; test -n "$(themedir)" || list=; \
329+ if test -n "$$list"; then \
330+ echo " $(MKDIR_P) '$(DESTDIR)$(themedir)'"; \
331+ $(MKDIR_P) "$(DESTDIR)$(themedir)" || exit 1; \
332+ fi; \
333+ for p in $$list; do \
334+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
335+ echo "$$d$$p"; \
336+ done | $(am__base_list) | \
337+ while read files; do \
338+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(themedir)'"; \
339+ $(INSTALL_DATA) $$files "$(DESTDIR)$(themedir)" || exit $$?; \
340+ done
341+
342+uninstall-dist_themeDATA:
343+ @$(NORMAL_UNINSTALL)
344+ @list='$(dist_theme_DATA)'; test -n "$(themedir)" || list=; \
345+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
346+ dir='$(DESTDIR)$(themedir)'; $(am__uninstall_files_from_dir)
347+tags TAGS:
348+
349+ctags CTAGS:
350+
351+cscope cscopelist:
352+
353+
354+distdir: $(DISTFILES)
355+ $(am__remove_distdir)
356+ test -d "$(distdir)" || mkdir "$(distdir)"
357+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
358+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
359+ list='$(DISTFILES)'; \
360+ dist_files=`for file in $$list; do echo $$file; done | \
361+ sed -e "s|^$$srcdirstrip/||;t" \
362+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
363+ case $$dist_files in \
364+ */*) $(MKDIR_P) `echo "$$dist_files" | \
365+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
366+ sort -u` ;; \
367+ esac; \
368+ for file in $$dist_files; do \
369+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
370+ if test -d $$d/$$file; then \
371+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
372+ if test -d "$(distdir)/$$file"; then \
373+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
374+ fi; \
375+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
376+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
377+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
378+ fi; \
379+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
380+ else \
381+ test -f "$(distdir)/$$file" \
382+ || cp -p $$d/$$file "$(distdir)/$$file" \
383+ || exit 1; \
384+ fi; \
385+ done
386+ -test -n "$(am__skip_mode_fix)" \
387+ || find "$(distdir)" -type d ! -perm -755 \
388+ -exec chmod u+rwx,go+rx {} \; -o \
389+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
390+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
391+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
392+ || chmod -R a+r "$(distdir)"
393+dist-gzip: distdir
394+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
395+ $(am__post_remove_distdir)
396+
397+dist-bzip2: distdir
398+ tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
399+ $(am__post_remove_distdir)
400+
401+dist-lzip: distdir
402+ tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
403+ $(am__post_remove_distdir)
404+dist-xz: distdir
405+ tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
406+ $(am__post_remove_distdir)
407+
408+dist-tarZ: distdir
409+ @echo WARNING: "Support for shar distribution archives is" \
410+ "deprecated." >&2
411+ @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
412+ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
413+ $(am__post_remove_distdir)
414+
415+dist-shar: distdir
416+ @echo WARNING: "Support for distribution archives compressed with" \
417+ "legacy program 'compress' is deprecated." >&2
418+ @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
419+ shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
420+ $(am__post_remove_distdir)
421+
422+dist-zip: distdir
423+ -rm -f $(distdir).zip
424+ zip -rq $(distdir).zip $(distdir)
425+ $(am__post_remove_distdir)
426+
427+dist dist-all:
428+ $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
429+ $(am__post_remove_distdir)
430+
431+# This target untars the dist file and tries a VPATH configuration. Then
432+# it guarantees that the distribution is self-contained by making another
433+# tarfile.
434+distcheck: dist
435+ case '$(DIST_ARCHIVES)' in \
436+ *.tar.gz*) \
437+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
438+ *.tar.bz2*) \
439+ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
440+ *.tar.lz*) \
441+ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
442+ *.tar.xz*) \
443+ xz -dc $(distdir).tar.xz | $(am__untar) ;;\
444+ *.tar.Z*) \
445+ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
446+ *.shar.gz*) \
447+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
448+ *.zip*) \
449+ unzip $(distdir).zip ;;\
450+ esac
451+ chmod -R a-w $(distdir)
452+ chmod u+w $(distdir)
453+ mkdir $(distdir)/_build $(distdir)/_inst
454+ chmod a-w $(distdir)
455+ test -d $(distdir)/_build || exit 0; \
456+ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
457+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
458+ && am__cwd=`pwd` \
459+ && $(am__cd) $(distdir)/_build \
460+ && ../configure \
461+ $(AM_DISTCHECK_CONFIGURE_FLAGS) \
462+ $(DISTCHECK_CONFIGURE_FLAGS) \
463+ --srcdir=.. --prefix="$$dc_install_base" \
464+ && $(MAKE) $(AM_MAKEFLAGS) \
465+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
466+ && $(MAKE) $(AM_MAKEFLAGS) check \
467+ && $(MAKE) $(AM_MAKEFLAGS) install \
468+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
469+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
470+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
471+ distuninstallcheck \
472+ && chmod -R a-w "$$dc_install_base" \
473+ && ({ \
474+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
475+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
476+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
477+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
478+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
479+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
480+ && rm -rf "$$dc_destdir" \
481+ && $(MAKE) $(AM_MAKEFLAGS) dist \
482+ && rm -rf $(DIST_ARCHIVES) \
483+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
484+ && cd "$$am__cwd" \
485+ || exit 1
486+ $(am__post_remove_distdir)
487+ @(echo "$(distdir) archives ready for distribution: "; \
488+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
489+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
490+distuninstallcheck:
491+ @test -n '$(distuninstallcheck_dir)' || { \
492+ echo 'ERROR: trying to run $@ with an empty' \
493+ '$$(distuninstallcheck_dir)' >&2; \
494+ exit 1; \
495+ }; \
496+ $(am__cd) '$(distuninstallcheck_dir)' || { \
497+ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
498+ exit 1; \
499+ }; \
500+ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
501+ || { echo "ERROR: files left after uninstall:" ; \
502+ if test -n "$(DESTDIR)"; then \
503+ echo " (check DESTDIR support)"; \
504+ fi ; \
505+ $(distuninstallcheck_listfiles) ; \
506+ exit 1; } >&2
507+distcleancheck: distclean
508+ @if test '$(srcdir)' = . ; then \
509+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
510+ exit 1 ; \
511+ fi
512+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
513+ || { echo "ERROR: files left in build directory after distclean:" ; \
514+ $(distcleancheck_listfiles) ; \
515+ exit 1; } >&2
516+check-am: all-am
517+check: check-am
518+all-am: Makefile $(DATA)
519+installdirs:
520+ for dir in "$(DESTDIR)$(themedir)"; do \
521+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
522+ done
523+install: install-am
524+install-exec: install-exec-am
525+install-data: install-data-am
526+uninstall: uninstall-am
527+
528+install-am: all-am
529+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
530+
531+installcheck: installcheck-am
532+install-strip:
533+ if test -z '$(STRIP)'; then \
534+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
535+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
536+ install; \
537+ else \
538+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
539+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
540+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
541+ fi
542+mostlyclean-generic:
543+
544+clean-generic:
545+
546+distclean-generic:
547+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
548+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
549+
550+maintainer-clean-generic:
551+ @echo "This command is intended for maintainers to use"
552+ @echo "it deletes files that may require special tools to rebuild."
553+clean: clean-am
554+
555+clean-am: clean-generic mostlyclean-am
556+
557+distclean: distclean-am
558+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
559+ -rm -f Makefile
560+distclean-am: clean-am distclean-generic
561+
562+dvi: dvi-am
563+
564+dvi-am:
565+
566+html: html-am
567+
568+html-am:
569+
570+info: info-am
571+
572+info-am:
573+
574+install-data-am: install-dist_themeDATA
575+ @$(NORMAL_INSTALL)
576+ $(MAKE) $(AM_MAKEFLAGS) install-data-hook
577+install-dvi: install-dvi-am
578+
579+install-dvi-am:
580+
581+install-exec-am:
582+
583+install-html: install-html-am
584+
585+install-html-am:
586+
587+install-info: install-info-am
588+
589+install-info-am:
590+
591+install-man:
592+
593+install-pdf: install-pdf-am
594+
595+install-pdf-am:
596+
597+install-ps: install-ps-am
598+
599+install-ps-am:
600+
601+installcheck-am:
602+
603+maintainer-clean: maintainer-clean-am
604+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
605+ -rm -rf $(top_srcdir)/autom4te.cache
606+ -rm -f Makefile
607+maintainer-clean-am: distclean-am maintainer-clean-generic
608+
609+mostlyclean: mostlyclean-am
610+
611+mostlyclean-am: mostlyclean-generic
612+
613+pdf: pdf-am
614+
615+pdf-am:
616+
617+ps: ps-am
618+
619+ps-am:
620+
621+uninstall-am: uninstall-dist_themeDATA
622+
623+.MAKE: install-am install-data-am install-strip
624+
625+.PHONY: all all-am am--refresh check check-am clean clean-generic \
626+ cscopelist-am ctags-am dist dist-all dist-bzip2 dist-gzip \
627+ dist-lzip dist-shar dist-tarZ dist-xz dist-zip distcheck \
628+ distclean distclean-generic distcleancheck distdir \
629+ distuninstallcheck dvi dvi-am html html-am info info-am \
630+ install install-am install-data install-data-am \
631+ install-data-hook install-dist_themeDATA install-dvi \
632+ install-dvi-am install-exec install-exec-am install-html \
633+ install-html-am install-info install-info-am install-man \
634+ install-pdf install-pdf-am install-ps install-ps-am \
635+ install-strip installcheck installcheck-am installdirs \
636+ maintainer-clean maintainer-clean-generic mostlyclean \
637+ mostlyclean-generic pdf pdf-am ps ps-am tags-am uninstall \
638+ uninstall-am uninstall-dist_themeDATA
639+
640+
641+install-data-hook:
642+ mkdir -p $(DESTDIR)$(themedir)
643 for dir in $(ICON_SIZES); do \
644 for ctxt in $(ICON_CONTEXTS); do \
645- mkdir -p $(DESTDIR)$(datadir)/icons/hicolor/$$dir/$$ctxt; \
646+ mkdir -p $(DESTDIR)$(themedir)/$$dir/$$ctxt; \
647 if [ "$$ctxt" = "stock" ]; then \
648 for sub in $(STOCK_SUBS); do \
649- mkdir -p $(DESTDIR)$(datadir)/icons/hicolor/$$dir/$$ctxt/$$sub; \
650+ mkdir -p $(DESTDIR)$(themedir)/$$dir/$$ctxt/$$sub; \
651 done \
652 fi \
653 done \
654 done
655
656-dist:
657- rm -rf $(distdir)
658- mkdir $(distdir)
659- cp $(FILES) $(distdir)
660- tar czvf $(distdir).tar.gz $(distdir)
661- rm -rf $(distdir)
662-
663-tag:
664- cvs tag DEFAULT_ICON_THEME_`echo $(VERSION)|sed "s/\./_/"`
665-
666-# cause rebuilds
667-Makefile: Makefile.in config.status
668- ./config.status Makefile
669-configure: configure.ac
670- autoconf
671-config.status: configure
672- ./config.status --recheck
673-
674-.PHONY: all install dist tag
675-
676+# Tell versions [3.59,3.63) of GNU make to not export all variables.
677+# Otherwise a system limit (for SysV at least) may be exceeded.
678+.NOEXPORT:
679
680=== added file 'aclocal.m4'
681--- aclocal.m4 1970-01-01 00:00:00 +0000
682+++ aclocal.m4 2014-12-30 20:20:45 +0000
683@@ -0,0 +1,754 @@
684+# generated automatically by aclocal 1.14.1 -*- Autoconf -*-
685+
686+# Copyright (C) 1996-2013 Free Software Foundation, Inc.
687+
688+# This file is free software; the Free Software Foundation
689+# gives unlimited permission to copy and/or distribute it,
690+# with or without modifications, as long as this notice is preserved.
691+
692+# This program is distributed in the hope that it will be useful,
693+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
694+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
695+# PARTICULAR PURPOSE.
696+
697+m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
698+m4_ifndef([AC_AUTOCONF_VERSION],
699+ [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
700+m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
701+[m4_warning([this file was generated for autoconf 2.69.
702+You have another version of autoconf. It may work, but is not guaranteed to.
703+If you have problems, you may need to regenerate the build system entirely.
704+To do so, use the procedure documented by the package, typically 'autoreconf'.])])
705+
706+# Copyright (C) 2002-2013 Free Software Foundation, Inc.
707+#
708+# This file is free software; the Free Software Foundation
709+# gives unlimited permission to copy and/or distribute it,
710+# with or without modifications, as long as this notice is preserved.
711+
712+# AM_AUTOMAKE_VERSION(VERSION)
713+# ----------------------------
714+# Automake X.Y traces this macro to ensure aclocal.m4 has been
715+# generated from the m4 files accompanying Automake X.Y.
716+# (This private macro should not be called outside this file.)
717+AC_DEFUN([AM_AUTOMAKE_VERSION],
718+[am__api_version='1.14'
719+dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
720+dnl require some minimum version. Point them to the right macro.
721+m4_if([$1], [1.14.1], [],
722+ [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
723+])
724+
725+# _AM_AUTOCONF_VERSION(VERSION)
726+# -----------------------------
727+# aclocal traces this macro to find the Autoconf version.
728+# This is a private macro too. Using m4_define simplifies
729+# the logic in aclocal, which can simply ignore this definition.
730+m4_define([_AM_AUTOCONF_VERSION], [])
731+
732+# AM_SET_CURRENT_AUTOMAKE_VERSION
733+# -------------------------------
734+# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
735+# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
736+AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
737+[AM_AUTOMAKE_VERSION([1.14.1])dnl
738+m4_ifndef([AC_AUTOCONF_VERSION],
739+ [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
740+_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
741+
742+# AM_AUX_DIR_EXPAND -*- Autoconf -*-
743+
744+# Copyright (C) 2001-2013 Free Software Foundation, Inc.
745+#
746+# This file is free software; the Free Software Foundation
747+# gives unlimited permission to copy and/or distribute it,
748+# with or without modifications, as long as this notice is preserved.
749+
750+# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
751+# $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to
752+# '$srcdir', '$srcdir/..', or '$srcdir/../..'.
753+#
754+# Of course, Automake must honor this variable whenever it calls a
755+# tool from the auxiliary directory. The problem is that $srcdir (and
756+# therefore $ac_aux_dir as well) can be either absolute or relative,
757+# depending on how configure is run. This is pretty annoying, since
758+# it makes $ac_aux_dir quite unusable in subdirectories: in the top
759+# source directory, any form will work fine, but in subdirectories a
760+# relative path needs to be adjusted first.
761+#
762+# $ac_aux_dir/missing
763+# fails when called from a subdirectory if $ac_aux_dir is relative
764+# $top_srcdir/$ac_aux_dir/missing
765+# fails if $ac_aux_dir is absolute,
766+# fails when called from a subdirectory in a VPATH build with
767+# a relative $ac_aux_dir
768+#
769+# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
770+# are both prefixed by $srcdir. In an in-source build this is usually
771+# harmless because $srcdir is '.', but things will broke when you
772+# start a VPATH build or use an absolute $srcdir.
773+#
774+# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
775+# iff we strip the leading $srcdir from $ac_aux_dir. That would be:
776+# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
777+# and then we would define $MISSING as
778+# MISSING="\${SHELL} $am_aux_dir/missing"
779+# This will work as long as MISSING is not called from configure, because
780+# unfortunately $(top_srcdir) has no meaning in configure.
781+# However there are other variables, like CC, which are often used in
782+# configure, and could therefore not use this "fixed" $ac_aux_dir.
783+#
784+# Another solution, used here, is to always expand $ac_aux_dir to an
785+# absolute PATH. The drawback is that using absolute paths prevent a
786+# configured tree to be moved without reconfiguration.
787+
788+AC_DEFUN([AM_AUX_DIR_EXPAND],
789+[dnl Rely on autoconf to set up CDPATH properly.
790+AC_PREREQ([2.50])dnl
791+# expand $ac_aux_dir to an absolute path
792+am_aux_dir=`cd $ac_aux_dir && pwd`
793+])
794+
795+# Do all the work for Automake. -*- Autoconf -*-
796+
797+# Copyright (C) 1996-2013 Free Software Foundation, Inc.
798+#
799+# This file is free software; the Free Software Foundation
800+# gives unlimited permission to copy and/or distribute it,
801+# with or without modifications, as long as this notice is preserved.
802+
803+# This macro actually does too much. Some checks are only needed if
804+# your package does certain things. But this isn't really a big deal.
805+
806+dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O.
807+m4_define([AC_PROG_CC],
808+m4_defn([AC_PROG_CC])
809+[_AM_PROG_CC_C_O
810+])
811+
812+# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
813+# AM_INIT_AUTOMAKE([OPTIONS])
814+# -----------------------------------------------
815+# The call with PACKAGE and VERSION arguments is the old style
816+# call (pre autoconf-2.50), which is being phased out. PACKAGE
817+# and VERSION should now be passed to AC_INIT and removed from
818+# the call to AM_INIT_AUTOMAKE.
819+# We support both call styles for the transition. After
820+# the next Automake release, Autoconf can make the AC_INIT
821+# arguments mandatory, and then we can depend on a new Autoconf
822+# release and drop the old call support.
823+AC_DEFUN([AM_INIT_AUTOMAKE],
824+[AC_PREREQ([2.65])dnl
825+dnl Autoconf wants to disallow AM_ names. We explicitly allow
826+dnl the ones we care about.
827+m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
828+AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
829+AC_REQUIRE([AC_PROG_INSTALL])dnl
830+if test "`cd $srcdir && pwd`" != "`pwd`"; then
831+ # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
832+ # is not polluted with repeated "-I."
833+ AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
834+ # test to see if srcdir already configured
835+ if test -f $srcdir/config.status; then
836+ AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
837+ fi
838+fi
839+
840+# test whether we have cygpath
841+if test -z "$CYGPATH_W"; then
842+ if (cygpath --version) >/dev/null 2>/dev/null; then
843+ CYGPATH_W='cygpath -w'
844+ else
845+ CYGPATH_W=echo
846+ fi
847+fi
848+AC_SUBST([CYGPATH_W])
849+
850+# Define the identity of the package.
851+dnl Distinguish between old-style and new-style calls.
852+m4_ifval([$2],
853+[AC_DIAGNOSE([obsolete],
854+ [$0: two- and three-arguments forms are deprecated.])
855+m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
856+ AC_SUBST([PACKAGE], [$1])dnl
857+ AC_SUBST([VERSION], [$2])],
858+[_AM_SET_OPTIONS([$1])dnl
859+dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
860+m4_if(
861+ m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
862+ [ok:ok],,
863+ [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
864+ AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
865+ AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
866+
867+_AM_IF_OPTION([no-define],,
868+[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
869+ AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
870+
871+# Some tools Automake needs.
872+AC_REQUIRE([AM_SANITY_CHECK])dnl
873+AC_REQUIRE([AC_ARG_PROGRAM])dnl
874+AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
875+AM_MISSING_PROG([AUTOCONF], [autoconf])
876+AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
877+AM_MISSING_PROG([AUTOHEADER], [autoheader])
878+AM_MISSING_PROG([MAKEINFO], [makeinfo])
879+AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
880+AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
881+AC_REQUIRE([AC_PROG_MKDIR_P])dnl
882+# For better backward compatibility. To be removed once Automake 1.9.x
883+# dies out for good. For more background, see:
884+# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
885+# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
886+AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
887+# We need awk for the "check" target. The system "awk" is bad on
888+# some platforms.
889+AC_REQUIRE([AC_PROG_AWK])dnl
890+AC_REQUIRE([AC_PROG_MAKE_SET])dnl
891+AC_REQUIRE([AM_SET_LEADING_DOT])dnl
892+_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
893+ [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
894+ [_AM_PROG_TAR([v7])])])
895+_AM_IF_OPTION([no-dependencies],,
896+[AC_PROVIDE_IFELSE([AC_PROG_CC],
897+ [_AM_DEPENDENCIES([CC])],
898+ [m4_define([AC_PROG_CC],
899+ m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
900+AC_PROVIDE_IFELSE([AC_PROG_CXX],
901+ [_AM_DEPENDENCIES([CXX])],
902+ [m4_define([AC_PROG_CXX],
903+ m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
904+AC_PROVIDE_IFELSE([AC_PROG_OBJC],
905+ [_AM_DEPENDENCIES([OBJC])],
906+ [m4_define([AC_PROG_OBJC],
907+ m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
908+AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
909+ [_AM_DEPENDENCIES([OBJCXX])],
910+ [m4_define([AC_PROG_OBJCXX],
911+ m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
912+])
913+AC_REQUIRE([AM_SILENT_RULES])dnl
914+dnl The testsuite driver may need to know about EXEEXT, so add the
915+dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
916+dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
917+AC_CONFIG_COMMANDS_PRE(dnl
918+[m4_provide_if([_AM_COMPILER_EXEEXT],
919+ [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
920+
921+# POSIX will say in a future version that running "rm -f" with no argument
922+# is OK; and we want to be able to make that assumption in our Makefile
923+# recipes. So use an aggressive probe to check that the usage we want is
924+# actually supported "in the wild" to an acceptable degree.
925+# See automake bug#10828.
926+# To make any issue more visible, cause the running configure to be aborted
927+# by default if the 'rm' program in use doesn't match our expectations; the
928+# user can still override this though.
929+if rm -f && rm -fr && rm -rf; then : OK; else
930+ cat >&2 <<'END'
931+Oops!
932+
933+Your 'rm' program seems unable to run without file operands specified
934+on the command line, even when the '-f' option is present. This is contrary
935+to the behaviour of most rm programs out there, and not conforming with
936+the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
937+
938+Please tell bug-automake@gnu.org about your system, including the value
939+of your $PATH and any error possibly output before this message. This
940+can help us improve future automake versions.
941+
942+END
943+ if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
944+ echo 'Configuration will proceed anyway, since you have set the' >&2
945+ echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
946+ echo >&2
947+ else
948+ cat >&2 <<'END'
949+Aborting the configuration process, to ensure you take notice of the issue.
950+
951+You can download and install GNU coreutils to get an 'rm' implementation
952+that behaves properly: <http://www.gnu.org/software/coreutils/>.
953+
954+If you want to complete the configuration process using your problematic
955+'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
956+to "yes", and re-run configure.
957+
958+END
959+ AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
960+ fi
961+fi])
962+
963+dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
964+dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
965+dnl mangled by Autoconf and run in a shell conditional statement.
966+m4_define([_AC_COMPILER_EXEEXT],
967+m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
968+
969+# When config.status generates a header, we must update the stamp-h file.
970+# This file resides in the same directory as the config header
971+# that is generated. The stamp files are numbered to have different names.
972+
973+# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
974+# loop where config.status creates the headers, so we can generate
975+# our stamp files there.
976+AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
977+[# Compute $1's index in $config_headers.
978+_am_arg=$1
979+_am_stamp_count=1
980+for _am_header in $config_headers :; do
981+ case $_am_header in
982+ $_am_arg | $_am_arg:* )
983+ break ;;
984+ * )
985+ _am_stamp_count=`expr $_am_stamp_count + 1` ;;
986+ esac
987+done
988+echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
989+
990+# Copyright (C) 2001-2013 Free Software Foundation, Inc.
991+#
992+# This file is free software; the Free Software Foundation
993+# gives unlimited permission to copy and/or distribute it,
994+# with or without modifications, as long as this notice is preserved.
995+
996+# AM_PROG_INSTALL_SH
997+# ------------------
998+# Define $install_sh.
999+AC_DEFUN([AM_PROG_INSTALL_SH],
1000+[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1001+if test x"${install_sh}" != xset; then
1002+ case $am_aux_dir in
1003+ *\ * | *\ *)
1004+ install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
1005+ *)
1006+ install_sh="\${SHELL} $am_aux_dir/install-sh"
1007+ esac
1008+fi
1009+AC_SUBST([install_sh])])
1010+
1011+# Copyright (C) 2003-2013 Free Software Foundation, Inc.
1012+#
1013+# This file is free software; the Free Software Foundation
1014+# gives unlimited permission to copy and/or distribute it,
1015+# with or without modifications, as long as this notice is preserved.
1016+
1017+# Check whether the underlying file-system supports filenames
1018+# with a leading dot. For instance MS-DOS doesn't.
1019+AC_DEFUN([AM_SET_LEADING_DOT],
1020+[rm -rf .tst 2>/dev/null
1021+mkdir .tst 2>/dev/null
1022+if test -d .tst; then
1023+ am__leading_dot=.
1024+else
1025+ am__leading_dot=_
1026+fi
1027+rmdir .tst 2>/dev/null
1028+AC_SUBST([am__leading_dot])])
1029+
1030+# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
1031+
1032+# Copyright (C) 1997-2013 Free Software Foundation, Inc.
1033+#
1034+# This file is free software; the Free Software Foundation
1035+# gives unlimited permission to copy and/or distribute it,
1036+# with or without modifications, as long as this notice is preserved.
1037+
1038+# AM_MISSING_PROG(NAME, PROGRAM)
1039+# ------------------------------
1040+AC_DEFUN([AM_MISSING_PROG],
1041+[AC_REQUIRE([AM_MISSING_HAS_RUN])
1042+$1=${$1-"${am_missing_run}$2"}
1043+AC_SUBST($1)])
1044+
1045+# AM_MISSING_HAS_RUN
1046+# ------------------
1047+# Define MISSING if not defined so far and test if it is modern enough.
1048+# If it is, set am_missing_run to use it, otherwise, to nothing.
1049+AC_DEFUN([AM_MISSING_HAS_RUN],
1050+[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1051+AC_REQUIRE_AUX_FILE([missing])dnl
1052+if test x"${MISSING+set}" != xset; then
1053+ case $am_aux_dir in
1054+ *\ * | *\ *)
1055+ MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
1056+ *)
1057+ MISSING="\${SHELL} $am_aux_dir/missing" ;;
1058+ esac
1059+fi
1060+# Use eval to expand $SHELL
1061+if eval "$MISSING --is-lightweight"; then
1062+ am_missing_run="$MISSING "
1063+else
1064+ am_missing_run=
1065+ AC_MSG_WARN(['missing' script is too old or missing])
1066+fi
1067+])
1068+
1069+# Helper functions for option handling. -*- Autoconf -*-
1070+
1071+# Copyright (C) 2001-2013 Free Software Foundation, Inc.
1072+#
1073+# This file is free software; the Free Software Foundation
1074+# gives unlimited permission to copy and/or distribute it,
1075+# with or without modifications, as long as this notice is preserved.
1076+
1077+# _AM_MANGLE_OPTION(NAME)
1078+# -----------------------
1079+AC_DEFUN([_AM_MANGLE_OPTION],
1080+[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
1081+
1082+# _AM_SET_OPTION(NAME)
1083+# --------------------
1084+# Set option NAME. Presently that only means defining a flag for this option.
1085+AC_DEFUN([_AM_SET_OPTION],
1086+[m4_define(_AM_MANGLE_OPTION([$1]), [1])])
1087+
1088+# _AM_SET_OPTIONS(OPTIONS)
1089+# ------------------------
1090+# OPTIONS is a space-separated list of Automake options.
1091+AC_DEFUN([_AM_SET_OPTIONS],
1092+[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
1093+
1094+# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
1095+# -------------------------------------------
1096+# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
1097+AC_DEFUN([_AM_IF_OPTION],
1098+[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
1099+
1100+# Copyright (C) 2001-2013 Free Software Foundation, Inc.
1101+#
1102+# This file is free software; the Free Software Foundation
1103+# gives unlimited permission to copy and/or distribute it,
1104+# with or without modifications, as long as this notice is preserved.
1105+
1106+# AM_RUN_LOG(COMMAND)
1107+# -------------------
1108+# Run COMMAND, save the exit status in ac_status, and log it.
1109+# (This has been adapted from Autoconf's _AC_RUN_LOG macro.)
1110+AC_DEFUN([AM_RUN_LOG],
1111+[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
1112+ ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
1113+ ac_status=$?
1114+ echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
1115+ (exit $ac_status); }])
1116+
1117+# Check to make sure that the build environment is sane. -*- Autoconf -*-
1118+
1119+# Copyright (C) 1996-2013 Free Software Foundation, Inc.
1120+#
1121+# This file is free software; the Free Software Foundation
1122+# gives unlimited permission to copy and/or distribute it,
1123+# with or without modifications, as long as this notice is preserved.
1124+
1125+# AM_SANITY_CHECK
1126+# ---------------
1127+AC_DEFUN([AM_SANITY_CHECK],
1128+[AC_MSG_CHECKING([whether build environment is sane])
1129+# Reject unsafe characters in $srcdir or the absolute working directory
1130+# name. Accept space and tab only in the latter.
1131+am_lf='
1132+'
1133+case `pwd` in
1134+ *[[\\\"\#\$\&\'\`$am_lf]]*)
1135+ AC_MSG_ERROR([unsafe absolute working directory name]);;
1136+esac
1137+case $srcdir in
1138+ *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
1139+ AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
1140+esac
1141+
1142+# Do 'set' in a subshell so we don't clobber the current shell's
1143+# arguments. Must try -L first in case configure is actually a
1144+# symlink; some systems play weird games with the mod time of symlinks
1145+# (eg FreeBSD returns the mod time of the symlink's containing
1146+# directory).
1147+if (
1148+ am_has_slept=no
1149+ for am_try in 1 2; do
1150+ echo "timestamp, slept: $am_has_slept" > conftest.file
1151+ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
1152+ if test "$[*]" = "X"; then
1153+ # -L didn't work.
1154+ set X `ls -t "$srcdir/configure" conftest.file`
1155+ fi
1156+ if test "$[*]" != "X $srcdir/configure conftest.file" \
1157+ && test "$[*]" != "X conftest.file $srcdir/configure"; then
1158+
1159+ # If neither matched, then we have a broken ls. This can happen
1160+ # if, for instance, CONFIG_SHELL is bash and it inherits a
1161+ # broken ls alias from the environment. This has actually
1162+ # happened. Such a system could not be considered "sane".
1163+ AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
1164+ alias in your environment])
1165+ fi
1166+ if test "$[2]" = conftest.file || test $am_try -eq 2; then
1167+ break
1168+ fi
1169+ # Just in case.
1170+ sleep 1
1171+ am_has_slept=yes
1172+ done
1173+ test "$[2]" = conftest.file
1174+ )
1175+then
1176+ # Ok.
1177+ :
1178+else
1179+ AC_MSG_ERROR([newly created file is older than distributed files!
1180+Check your system clock])
1181+fi
1182+AC_MSG_RESULT([yes])
1183+# If we didn't sleep, we still need to ensure time stamps of config.status and
1184+# generated files are strictly newer.
1185+am_sleep_pid=
1186+if grep 'slept: no' conftest.file >/dev/null 2>&1; then
1187+ ( sleep 1 ) &
1188+ am_sleep_pid=$!
1189+fi
1190+AC_CONFIG_COMMANDS_PRE(
1191+ [AC_MSG_CHECKING([that generated files are newer than configure])
1192+ if test -n "$am_sleep_pid"; then
1193+ # Hide warnings about reused PIDs.
1194+ wait $am_sleep_pid 2>/dev/null
1195+ fi
1196+ AC_MSG_RESULT([done])])
1197+rm -f conftest.file
1198+])
1199+
1200+# Copyright (C) 2009-2013 Free Software Foundation, Inc.
1201+#
1202+# This file is free software; the Free Software Foundation
1203+# gives unlimited permission to copy and/or distribute it,
1204+# with or without modifications, as long as this notice is preserved.
1205+
1206+# AM_SILENT_RULES([DEFAULT])
1207+# --------------------------
1208+# Enable less verbose build rules; with the default set to DEFAULT
1209+# ("yes" being less verbose, "no" or empty being verbose).
1210+AC_DEFUN([AM_SILENT_RULES],
1211+[AC_ARG_ENABLE([silent-rules], [dnl
1212+AS_HELP_STRING(
1213+ [--enable-silent-rules],
1214+ [less verbose build output (undo: "make V=1")])
1215+AS_HELP_STRING(
1216+ [--disable-silent-rules],
1217+ [verbose build output (undo: "make V=0")])dnl
1218+])
1219+case $enable_silent_rules in @%:@ (((
1220+ yes) AM_DEFAULT_VERBOSITY=0;;
1221+ no) AM_DEFAULT_VERBOSITY=1;;
1222+ *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
1223+esac
1224+dnl
1225+dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
1226+dnl do not support nested variable expansions.
1227+dnl See automake bug#9928 and bug#10237.
1228+am_make=${MAKE-make}
1229+AC_CACHE_CHECK([whether $am_make supports nested variables],
1230+ [am_cv_make_support_nested_variables],
1231+ [if AS_ECHO([['TRUE=$(BAR$(V))
1232+BAR0=false
1233+BAR1=true
1234+V=1
1235+am__doit:
1236+ @$(TRUE)
1237+.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
1238+ am_cv_make_support_nested_variables=yes
1239+else
1240+ am_cv_make_support_nested_variables=no
1241+fi])
1242+if test $am_cv_make_support_nested_variables = yes; then
1243+ dnl Using '$V' instead of '$(V)' breaks IRIX make.
1244+ AM_V='$(V)'
1245+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
1246+else
1247+ AM_V=$AM_DEFAULT_VERBOSITY
1248+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
1249+fi
1250+AC_SUBST([AM_V])dnl
1251+AM_SUBST_NOTMAKE([AM_V])dnl
1252+AC_SUBST([AM_DEFAULT_V])dnl
1253+AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
1254+AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
1255+AM_BACKSLASH='\'
1256+AC_SUBST([AM_BACKSLASH])dnl
1257+_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
1258+])
1259+
1260+# Copyright (C) 2001-2013 Free Software Foundation, Inc.
1261+#
1262+# This file is free software; the Free Software Foundation
1263+# gives unlimited permission to copy and/or distribute it,
1264+# with or without modifications, as long as this notice is preserved.
1265+
1266+# AM_PROG_INSTALL_STRIP
1267+# ---------------------
1268+# One issue with vendor 'install' (even GNU) is that you can't
1269+# specify the program used to strip binaries. This is especially
1270+# annoying in cross-compiling environments, where the build's strip
1271+# is unlikely to handle the host's binaries.
1272+# Fortunately install-sh will honor a STRIPPROG variable, so we
1273+# always use install-sh in "make install-strip", and initialize
1274+# STRIPPROG with the value of the STRIP variable (set by the user).
1275+AC_DEFUN([AM_PROG_INSTALL_STRIP],
1276+[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1277+# Installed binaries are usually stripped using 'strip' when the user
1278+# run "make install-strip". However 'strip' might not be the right
1279+# tool to use in cross-compilation environments, therefore Automake
1280+# will honor the 'STRIP' environment variable to overrule this program.
1281+dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
1282+if test "$cross_compiling" != no; then
1283+ AC_CHECK_TOOL([STRIP], [strip], :)
1284+fi
1285+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1286+AC_SUBST([INSTALL_STRIP_PROGRAM])])
1287+
1288+# Copyright (C) 2006-2013 Free Software Foundation, Inc.
1289+#
1290+# This file is free software; the Free Software Foundation
1291+# gives unlimited permission to copy and/or distribute it,
1292+# with or without modifications, as long as this notice is preserved.
1293+
1294+# _AM_SUBST_NOTMAKE(VARIABLE)
1295+# ---------------------------
1296+# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
1297+# This macro is traced by Automake.
1298+AC_DEFUN([_AM_SUBST_NOTMAKE])
1299+
1300+# AM_SUBST_NOTMAKE(VARIABLE)
1301+# --------------------------
1302+# Public sister of _AM_SUBST_NOTMAKE.
1303+AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
1304+
1305+# Check how to create a tarball. -*- Autoconf -*-
1306+
1307+# Copyright (C) 2004-2013 Free Software Foundation, Inc.
1308+#
1309+# This file is free software; the Free Software Foundation
1310+# gives unlimited permission to copy and/or distribute it,
1311+# with or without modifications, as long as this notice is preserved.
1312+
1313+# _AM_PROG_TAR(FORMAT)
1314+# --------------------
1315+# Check how to create a tarball in format FORMAT.
1316+# FORMAT should be one of 'v7', 'ustar', or 'pax'.
1317+#
1318+# Substitute a variable $(am__tar) that is a command
1319+# writing to stdout a FORMAT-tarball containing the directory
1320+# $tardir.
1321+# tardir=directory && $(am__tar) > result.tar
1322+#
1323+# Substitute a variable $(am__untar) that extract such
1324+# a tarball read from stdin.
1325+# $(am__untar) < result.tar
1326+#
1327+AC_DEFUN([_AM_PROG_TAR],
1328+[# Always define AMTAR for backward compatibility. Yes, it's still used
1329+# in the wild :-( We should find a proper way to deprecate it ...
1330+AC_SUBST([AMTAR], ['$${TAR-tar}'])
1331+
1332+# We'll loop over all known methods to create a tar archive until one works.
1333+_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
1334+
1335+m4_if([$1], [v7],
1336+ [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
1337+
1338+ [m4_case([$1],
1339+ [ustar],
1340+ [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
1341+ # There is notably a 21 bits limit for the UID and the GID. In fact,
1342+ # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
1343+ # and bug#13588).
1344+ am_max_uid=2097151 # 2^21 - 1
1345+ am_max_gid=$am_max_uid
1346+ # The $UID and $GID variables are not portable, so we need to resort
1347+ # to the POSIX-mandated id(1) utility. Errors in the 'id' calls
1348+ # below are definitely unexpected, so allow the users to see them
1349+ # (that is, avoid stderr redirection).
1350+ am_uid=`id -u || echo unknown`
1351+ am_gid=`id -g || echo unknown`
1352+ AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
1353+ if test $am_uid -le $am_max_uid; then
1354+ AC_MSG_RESULT([yes])
1355+ else
1356+ AC_MSG_RESULT([no])
1357+ _am_tools=none
1358+ fi
1359+ AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
1360+ if test $am_gid -le $am_max_gid; then
1361+ AC_MSG_RESULT([yes])
1362+ else
1363+ AC_MSG_RESULT([no])
1364+ _am_tools=none
1365+ fi],
1366+
1367+ [pax],
1368+ [],
1369+
1370+ [m4_fatal([Unknown tar format])])
1371+
1372+ AC_MSG_CHECKING([how to create a $1 tar archive])
1373+
1374+ # Go ahead even if we have the value already cached. We do so because we
1375+ # need to set the values for the 'am__tar' and 'am__untar' variables.
1376+ _am_tools=${am_cv_prog_tar_$1-$_am_tools}
1377+
1378+ for _am_tool in $_am_tools; do
1379+ case $_am_tool in
1380+ gnutar)
1381+ for _am_tar in tar gnutar gtar; do
1382+ AM_RUN_LOG([$_am_tar --version]) && break
1383+ done
1384+ am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
1385+ am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
1386+ am__untar="$_am_tar -xf -"
1387+ ;;
1388+ plaintar)
1389+ # Must skip GNU tar: if it does not support --format= it doesn't create
1390+ # ustar tarball either.
1391+ (tar --version) >/dev/null 2>&1 && continue
1392+ am__tar='tar chf - "$$tardir"'
1393+ am__tar_='tar chf - "$tardir"'
1394+ am__untar='tar xf -'
1395+ ;;
1396+ pax)
1397+ am__tar='pax -L -x $1 -w "$$tardir"'
1398+ am__tar_='pax -L -x $1 -w "$tardir"'
1399+ am__untar='pax -r'
1400+ ;;
1401+ cpio)
1402+ am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
1403+ am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
1404+ am__untar='cpio -i -H $1 -d'
1405+ ;;
1406+ none)
1407+ am__tar=false
1408+ am__tar_=false
1409+ am__untar=false
1410+ ;;
1411+ esac
1412+
1413+ # If the value was cached, stop now. We just wanted to have am__tar
1414+ # and am__untar set.
1415+ test -n "${am_cv_prog_tar_$1}" && break
1416+
1417+ # tar/untar a dummy directory, and stop if the command works.
1418+ rm -rf conftest.dir
1419+ mkdir conftest.dir
1420+ echo GrepMe > conftest.dir/file
1421+ AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
1422+ rm -rf conftest.dir
1423+ if test -s conftest.tar; then
1424+ AM_RUN_LOG([$am__untar <conftest.tar])
1425+ AM_RUN_LOG([cat conftest.dir/file])
1426+ grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
1427+ fi
1428+ done
1429+ rm -rf conftest.dir
1430+
1431+ AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
1432+ AC_MSG_RESULT([$am_cv_prog_tar_$1])])
1433+
1434+AC_SUBST([am__tar])
1435+AC_SUBST([am__untar])
1436+]) # _AM_PROG_TAR
1437+
1438
1439=== added file 'autogen.sh'
1440--- autogen.sh 1970-01-01 00:00:00 +0000
1441+++ autogen.sh 2014-12-30 20:20:45 +0000
1442@@ -0,0 +1,61 @@
1443+#!/bin/sh
1444+# Run this to generate all the initial makefiles, etc.
1445+
1446+srcdir=`dirname $0`
1447+test -z "$srcdir" && srcdir=.
1448+
1449+ORIGDIR=`pwd`
1450+cd $srcdir
1451+
1452+PROJECT=hicolor-icon-theme
1453+TEST_TYPE=-f
1454+FILE=index.theme
1455+
1456+DIE=0
1457+
1458+(autoconf --version) < /dev/null > /dev/null 2>&1 || {
1459+ echo
1460+ echo "You must have autoconf installed to compile $PROJECT."
1461+ echo "Download the appropriate package for your distribution,"
1462+ echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
1463+ DIE=1
1464+}
1465+
1466+if test "$DIE" -eq 1; then
1467+ exit 1
1468+fi
1469+
1470+test $TEST_TYPE $FILE || {
1471+ echo "You must run this script in the top-level $PROJECT directory"
1472+ exit 1
1473+}
1474+
1475+if test -z "$*"; then
1476+ echo "I am going to run ./configure with no arguments - if you wish "
1477+ echo "to pass any to it, please specify them on the $0 command line."
1478+fi
1479+
1480+autoreconf --force --install || echo "autoconf failed - version 2.5x is probably required"
1481+
1482+cd $ORIGDIR
1483+
1484+run_configure=true
1485+for arg in $*; do
1486+ case $arg in
1487+ --no-configure)
1488+ run_configure=false
1489+ ;;
1490+ *)
1491+ ;;
1492+ esac
1493+done
1494+
1495+if $run_configure; then
1496+ $srcdir/configure --enable-maintainer-mode --config-cache "$@"
1497+ echo
1498+ echo "Now type 'make' to compile $PROJECT."
1499+else
1500+ echo
1501+ echo "Now run 'configure' and 'make' to compile $PROJECT."
1502+fi
1503+
1504
1505=== modified file 'configure'
1506--- configure 2013-12-29 10:37:45 +0000
1507+++ configure 2014-12-30 20:20:45 +0000
1508@@ -1,6 +1,6 @@
1509 #! /bin/sh
1510 # Guess values for system-dependent variables and create Makefiles.
1511-# Generated by GNU Autoconf 2.69 for hicolor-icon-theme 0.13.
1512+# Generated by GNU Autoconf 2.69 for hicolor-icon-theme 0.14.
1513 #
1514 #
1515 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
1516@@ -576,13 +576,37 @@
1517 # Identity of this package.
1518 PACKAGE_NAME='hicolor-icon-theme'
1519 PACKAGE_TARNAME='hicolor-icon-theme'
1520-PACKAGE_VERSION='0.13'
1521-PACKAGE_STRING='hicolor-icon-theme 0.13'
1522+PACKAGE_VERSION='0.14'
1523+PACKAGE_STRING='hicolor-icon-theme 0.14'
1524 PACKAGE_BUGREPORT=''
1525 PACKAGE_URL=''
1526
1527 ac_subst_vars='LTLIBOBJS
1528 LIBOBJS
1529+AM_BACKSLASH
1530+AM_DEFAULT_VERBOSITY
1531+AM_DEFAULT_V
1532+AM_V
1533+am__untar
1534+am__tar
1535+AMTAR
1536+am__leading_dot
1537+SET_MAKE
1538+AWK
1539+mkdir_p
1540+MKDIR_P
1541+INSTALL_STRIP_PROGRAM
1542+STRIP
1543+install_sh
1544+MAKEINFO
1545+AUTOHEADER
1546+AUTOMAKE
1547+AUTOCONF
1548+ACLOCAL
1549+VERSION
1550+PACKAGE
1551+CYGPATH_W
1552+am__isrc
1553 INSTALL_DATA
1554 INSTALL_SCRIPT
1555 INSTALL_PROGRAM
1556@@ -627,6 +651,7 @@
1557 ac_subst_files=''
1558 ac_user_opts='
1559 enable_option_checking
1560+enable_silent_rules
1561 '
1562 ac_precious_vars='build_alias
1563 host_alias
1564@@ -1171,7 +1196,7 @@
1565 # Omit some internal or obsolete options to make the list less imposing.
1566 # This message is too long to be a string in the A/UX 3.1 sh.
1567 cat <<_ACEOF
1568-\`configure' configures hicolor-icon-theme 0.13 to adapt to many kinds of systems.
1569+\`configure' configures hicolor-icon-theme 0.14 to adapt to many kinds of systems.
1570
1571 Usage: $0 [OPTION]... [VAR=VALUE]...
1572
1573@@ -1228,15 +1253,27 @@
1574 _ACEOF
1575
1576 cat <<\_ACEOF
1577+
1578+Program names:
1579+ --program-prefix=PREFIX prepend PREFIX to installed program names
1580+ --program-suffix=SUFFIX append SUFFIX to installed program names
1581+ --program-transform-name=PROGRAM run sed PROGRAM on installed program names
1582 _ACEOF
1583 fi
1584
1585 if test -n "$ac_init_help"; then
1586 case $ac_init_help in
1587- short | recursive ) echo "Configuration of hicolor-icon-theme 0.13:";;
1588+ short | recursive ) echo "Configuration of hicolor-icon-theme 0.14:";;
1589 esac
1590 cat <<\_ACEOF
1591
1592+Optional Features:
1593+ --disable-option-checking ignore unrecognized --enable/--with options
1594+ --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
1595+ --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
1596+ --enable-silent-rules less verbose build output (undo: "make V=1")
1597+ --disable-silent-rules verbose build output (undo: "make V=0")
1598+
1599 Report bugs to the package provider.
1600 _ACEOF
1601 ac_status=$?
1602@@ -1300,7 +1337,7 @@
1603 test -n "$ac_init_help" && exit $ac_status
1604 if $ac_init_version; then
1605 cat <<\_ACEOF
1606-hicolor-icon-theme configure 0.13
1607+hicolor-icon-theme configure 0.14
1608 generated by GNU Autoconf 2.69
1609
1610 Copyright (C) 2012 Free Software Foundation, Inc.
1611@@ -1317,7 +1354,7 @@
1612 This file contains any messages produced by compilers while
1613 running configure, to aid debugging if configure makes a mistake.
1614
1615-It was created by hicolor-icon-theme $as_me 0.13, which was
1616+It was created by hicolor-icon-theme $as_me 0.14, which was
1617 generated by GNU Autoconf 2.69. Invocation command line was
1618
1619 $ $0 $@
1620@@ -1665,6 +1702,7 @@
1621 ac_compiler_gnu=$ac_cv_c_compiler_gnu
1622
1623
1624+am__api_version='1.14'
1625
1626 ac_aux_dir=
1627 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
1628@@ -1788,6 +1826,607 @@
1629
1630 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
1631
1632+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
1633+$as_echo_n "checking whether build environment is sane... " >&6; }
1634+# Reject unsafe characters in $srcdir or the absolute working directory
1635+# name. Accept space and tab only in the latter.
1636+am_lf='
1637+'
1638+case `pwd` in
1639+ *[\\\"\#\$\&\'\`$am_lf]*)
1640+ as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
1641+esac
1642+case $srcdir in
1643+ *[\\\"\#\$\&\'\`$am_lf\ \ ]*)
1644+ as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;;
1645+esac
1646+
1647+# Do 'set' in a subshell so we don't clobber the current shell's
1648+# arguments. Must try -L first in case configure is actually a
1649+# symlink; some systems play weird games with the mod time of symlinks
1650+# (eg FreeBSD returns the mod time of the symlink's containing
1651+# directory).
1652+if (
1653+ am_has_slept=no
1654+ for am_try in 1 2; do
1655+ echo "timestamp, slept: $am_has_slept" > conftest.file
1656+ set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
1657+ if test "$*" = "X"; then
1658+ # -L didn't work.
1659+ set X `ls -t "$srcdir/configure" conftest.file`
1660+ fi
1661+ if test "$*" != "X $srcdir/configure conftest.file" \
1662+ && test "$*" != "X conftest.file $srcdir/configure"; then
1663+
1664+ # If neither matched, then we have a broken ls. This can happen
1665+ # if, for instance, CONFIG_SHELL is bash and it inherits a
1666+ # broken ls alias from the environment. This has actually
1667+ # happened. Such a system could not be considered "sane".
1668+ as_fn_error $? "ls -t appears to fail. Make sure there is not a broken
1669+ alias in your environment" "$LINENO" 5
1670+ fi
1671+ if test "$2" = conftest.file || test $am_try -eq 2; then
1672+ break
1673+ fi
1674+ # Just in case.
1675+ sleep 1
1676+ am_has_slept=yes
1677+ done
1678+ test "$2" = conftest.file
1679+ )
1680+then
1681+ # Ok.
1682+ :
1683+else
1684+ as_fn_error $? "newly created file is older than distributed files!
1685+Check your system clock" "$LINENO" 5
1686+fi
1687+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1688+$as_echo "yes" >&6; }
1689+# If we didn't sleep, we still need to ensure time stamps of config.status and
1690+# generated files are strictly newer.
1691+am_sleep_pid=
1692+if grep 'slept: no' conftest.file >/dev/null 2>&1; then
1693+ ( sleep 1 ) &
1694+ am_sleep_pid=$!
1695+fi
1696+
1697+rm -f conftest.file
1698+
1699+test "$program_prefix" != NONE &&
1700+ program_transform_name="s&^&$program_prefix&;$program_transform_name"
1701+# Use a double $ so make ignores it.
1702+test "$program_suffix" != NONE &&
1703+ program_transform_name="s&\$&$program_suffix&;$program_transform_name"
1704+# Double any \ or $.
1705+# By default was `s,x,x', remove it if useless.
1706+ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
1707+program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
1708+
1709+# expand $ac_aux_dir to an absolute path
1710+am_aux_dir=`cd $ac_aux_dir && pwd`
1711+
1712+if test x"${MISSING+set}" != xset; then
1713+ case $am_aux_dir in
1714+ *\ * | *\ *)
1715+ MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
1716+ *)
1717+ MISSING="\${SHELL} $am_aux_dir/missing" ;;
1718+ esac
1719+fi
1720+# Use eval to expand $SHELL
1721+if eval "$MISSING --is-lightweight"; then
1722+ am_missing_run="$MISSING "
1723+else
1724+ am_missing_run=
1725+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
1726+$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
1727+fi
1728+
1729+if test x"${install_sh}" != xset; then
1730+ case $am_aux_dir in
1731+ *\ * | *\ *)
1732+ install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
1733+ *)
1734+ install_sh="\${SHELL} $am_aux_dir/install-sh"
1735+ esac
1736+fi
1737+
1738+# Installed binaries are usually stripped using 'strip' when the user
1739+# run "make install-strip". However 'strip' might not be the right
1740+# tool to use in cross-compilation environments, therefore Automake
1741+# will honor the 'STRIP' environment variable to overrule this program.
1742+if test "$cross_compiling" != no; then
1743+ if test -n "$ac_tool_prefix"; then
1744+ # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
1745+set dummy ${ac_tool_prefix}strip; ac_word=$2
1746+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1747+$as_echo_n "checking for $ac_word... " >&6; }
1748+if ${ac_cv_prog_STRIP+:} false; then :
1749+ $as_echo_n "(cached) " >&6
1750+else
1751+ if test -n "$STRIP"; then
1752+ ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
1753+else
1754+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1755+for as_dir in $PATH
1756+do
1757+ IFS=$as_save_IFS
1758+ test -z "$as_dir" && as_dir=.
1759+ for ac_exec_ext in '' $ac_executable_extensions; do
1760+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1761+ ac_cv_prog_STRIP="${ac_tool_prefix}strip"
1762+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1763+ break 2
1764+ fi
1765+done
1766+ done
1767+IFS=$as_save_IFS
1768+
1769+fi
1770+fi
1771+STRIP=$ac_cv_prog_STRIP
1772+if test -n "$STRIP"; then
1773+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
1774+$as_echo "$STRIP" >&6; }
1775+else
1776+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1777+$as_echo "no" >&6; }
1778+fi
1779+
1780+
1781+fi
1782+if test -z "$ac_cv_prog_STRIP"; then
1783+ ac_ct_STRIP=$STRIP
1784+ # Extract the first word of "strip", so it can be a program name with args.
1785+set dummy strip; ac_word=$2
1786+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1787+$as_echo_n "checking for $ac_word... " >&6; }
1788+if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
1789+ $as_echo_n "(cached) " >&6
1790+else
1791+ if test -n "$ac_ct_STRIP"; then
1792+ ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
1793+else
1794+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1795+for as_dir in $PATH
1796+do
1797+ IFS=$as_save_IFS
1798+ test -z "$as_dir" && as_dir=.
1799+ for ac_exec_ext in '' $ac_executable_extensions; do
1800+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1801+ ac_cv_prog_ac_ct_STRIP="strip"
1802+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1803+ break 2
1804+ fi
1805+done
1806+ done
1807+IFS=$as_save_IFS
1808+
1809+fi
1810+fi
1811+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
1812+if test -n "$ac_ct_STRIP"; then
1813+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
1814+$as_echo "$ac_ct_STRIP" >&6; }
1815+else
1816+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1817+$as_echo "no" >&6; }
1818+fi
1819+
1820+ if test "x$ac_ct_STRIP" = x; then
1821+ STRIP=":"
1822+ else
1823+ case $cross_compiling:$ac_tool_warned in
1824+yes:)
1825+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
1826+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
1827+ac_tool_warned=yes ;;
1828+esac
1829+ STRIP=$ac_ct_STRIP
1830+ fi
1831+else
1832+ STRIP="$ac_cv_prog_STRIP"
1833+fi
1834+
1835+fi
1836+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1837+
1838+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
1839+$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
1840+if test -z "$MKDIR_P"; then
1841+ if ${ac_cv_path_mkdir+:} false; then :
1842+ $as_echo_n "(cached) " >&6
1843+else
1844+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1845+for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
1846+do
1847+ IFS=$as_save_IFS
1848+ test -z "$as_dir" && as_dir=.
1849+ for ac_prog in mkdir gmkdir; do
1850+ for ac_exec_ext in '' $ac_executable_extensions; do
1851+ as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
1852+ case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
1853+ 'mkdir (GNU coreutils) '* | \
1854+ 'mkdir (coreutils) '* | \
1855+ 'mkdir (fileutils) '4.1*)
1856+ ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
1857+ break 3;;
1858+ esac
1859+ done
1860+ done
1861+ done
1862+IFS=$as_save_IFS
1863+
1864+fi
1865+
1866+ test -d ./--version && rmdir ./--version
1867+ if test "${ac_cv_path_mkdir+set}" = set; then
1868+ MKDIR_P="$ac_cv_path_mkdir -p"
1869+ else
1870+ # As a last resort, use the slow shell script. Don't cache a
1871+ # value for MKDIR_P within a source directory, because that will
1872+ # break other packages using the cache if that directory is
1873+ # removed, or if the value is a relative name.
1874+ MKDIR_P="$ac_install_sh -d"
1875+ fi
1876+fi
1877+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
1878+$as_echo "$MKDIR_P" >&6; }
1879+
1880+for ac_prog in gawk mawk nawk awk
1881+do
1882+ # Extract the first word of "$ac_prog", so it can be a program name with args.
1883+set dummy $ac_prog; ac_word=$2
1884+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1885+$as_echo_n "checking for $ac_word... " >&6; }
1886+if ${ac_cv_prog_AWK+:} false; then :
1887+ $as_echo_n "(cached) " >&6
1888+else
1889+ if test -n "$AWK"; then
1890+ ac_cv_prog_AWK="$AWK" # Let the user override the test.
1891+else
1892+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1893+for as_dir in $PATH
1894+do
1895+ IFS=$as_save_IFS
1896+ test -z "$as_dir" && as_dir=.
1897+ for ac_exec_ext in '' $ac_executable_extensions; do
1898+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1899+ ac_cv_prog_AWK="$ac_prog"
1900+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1901+ break 2
1902+ fi
1903+done
1904+ done
1905+IFS=$as_save_IFS
1906+
1907+fi
1908+fi
1909+AWK=$ac_cv_prog_AWK
1910+if test -n "$AWK"; then
1911+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
1912+$as_echo "$AWK" >&6; }
1913+else
1914+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1915+$as_echo "no" >&6; }
1916+fi
1917+
1918+
1919+ test -n "$AWK" && break
1920+done
1921+
1922+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
1923+$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
1924+set x ${MAKE-make}
1925+ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
1926+if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
1927+ $as_echo_n "(cached) " >&6
1928+else
1929+ cat >conftest.make <<\_ACEOF
1930+SHELL = /bin/sh
1931+all:
1932+ @echo '@@@%%%=$(MAKE)=@@@%%%'
1933+_ACEOF
1934+# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
1935+case `${MAKE-make} -f conftest.make 2>/dev/null` in
1936+ *@@@%%%=?*=@@@%%%*)
1937+ eval ac_cv_prog_make_${ac_make}_set=yes;;
1938+ *)
1939+ eval ac_cv_prog_make_${ac_make}_set=no;;
1940+esac
1941+rm -f conftest.make
1942+fi
1943+if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
1944+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1945+$as_echo "yes" >&6; }
1946+ SET_MAKE=
1947+else
1948+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1949+$as_echo "no" >&6; }
1950+ SET_MAKE="MAKE=${MAKE-make}"
1951+fi
1952+
1953+rm -rf .tst 2>/dev/null
1954+mkdir .tst 2>/dev/null
1955+if test -d .tst; then
1956+ am__leading_dot=.
1957+else
1958+ am__leading_dot=_
1959+fi
1960+rmdir .tst 2>/dev/null
1961+
1962+# Check whether --enable-silent-rules was given.
1963+if test "${enable_silent_rules+set}" = set; then :
1964+ enableval=$enable_silent_rules;
1965+fi
1966+
1967+case $enable_silent_rules in # (((
1968+ yes) AM_DEFAULT_VERBOSITY=0;;
1969+ no) AM_DEFAULT_VERBOSITY=1;;
1970+ *) AM_DEFAULT_VERBOSITY=1;;
1971+esac
1972+am_make=${MAKE-make}
1973+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
1974+$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
1975+if ${am_cv_make_support_nested_variables+:} false; then :
1976+ $as_echo_n "(cached) " >&6
1977+else
1978+ if $as_echo 'TRUE=$(BAR$(V))
1979+BAR0=false
1980+BAR1=true
1981+V=1
1982+am__doit:
1983+ @$(TRUE)
1984+.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
1985+ am_cv_make_support_nested_variables=yes
1986+else
1987+ am_cv_make_support_nested_variables=no
1988+fi
1989+fi
1990+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
1991+$as_echo "$am_cv_make_support_nested_variables" >&6; }
1992+if test $am_cv_make_support_nested_variables = yes; then
1993+ AM_V='$(V)'
1994+ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
1995+else
1996+ AM_V=$AM_DEFAULT_VERBOSITY
1997+ AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
1998+fi
1999+AM_BACKSLASH='\'
2000+
2001+if test "`cd $srcdir && pwd`" != "`pwd`"; then
2002+ # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
2003+ # is not polluted with repeated "-I."
2004+ am__isrc=' -I$(srcdir)'
2005+ # test to see if srcdir already configured
2006+ if test -f $srcdir/config.status; then
2007+ as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
2008+ fi
2009+fi
2010+
2011+# test whether we have cygpath
2012+if test -z "$CYGPATH_W"; then
2013+ if (cygpath --version) >/dev/null 2>/dev/null; then
2014+ CYGPATH_W='cygpath -w'
2015+ else
2016+ CYGPATH_W=echo
2017+ fi
2018+fi
2019+
2020+
2021+# Define the identity of the package.
2022+ PACKAGE='hicolor-icon-theme'
2023+ VERSION='0.14'
2024+
2025+
2026+cat >>confdefs.h <<_ACEOF
2027+#define PACKAGE "$PACKAGE"
2028+_ACEOF
2029+
2030+
2031+cat >>confdefs.h <<_ACEOF
2032+#define VERSION "$VERSION"
2033+_ACEOF
2034+
2035+# Some tools Automake needs.
2036+
2037+ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
2038+
2039+
2040+AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
2041+
2042+
2043+AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
2044+
2045+
2046+AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
2047+
2048+
2049+MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
2050+
2051+# For better backward compatibility. To be removed once Automake 1.9.x
2052+# dies out for good. For more background, see:
2053+# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2054+# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
2055+mkdir_p='$(MKDIR_P)'
2056+
2057+# We need awk for the "check" target. The system "awk" is bad on
2058+# some platforms.
2059+# Always define AMTAR for backward compatibility. Yes, it's still used
2060+# in the wild :-( We should find a proper way to deprecate it ...
2061+AMTAR='$${TAR-tar}'
2062+
2063+
2064+# We'll loop over all known methods to create a tar archive until one works.
2065+_am_tools='gnutar plaintar pax cpio none'
2066+
2067+# The POSIX 1988 'ustar' format is defined with fixed-size fields.
2068+ # There is notably a 21 bits limit for the UID and the GID. In fact,
2069+ # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
2070+ # and bug#13588).
2071+ am_max_uid=2097151 # 2^21 - 1
2072+ am_max_gid=$am_max_uid
2073+ # The $UID and $GID variables are not portable, so we need to resort
2074+ # to the POSIX-mandated id(1) utility. Errors in the 'id' calls
2075+ # below are definitely unexpected, so allow the users to see them
2076+ # (that is, avoid stderr redirection).
2077+ am_uid=`id -u || echo unknown`
2078+ am_gid=`id -g || echo unknown`
2079+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether UID '$am_uid' is supported by ustar format" >&5
2080+$as_echo_n "checking whether UID '$am_uid' is supported by ustar format... " >&6; }
2081+ if test $am_uid -le $am_max_uid; then
2082+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2083+$as_echo "yes" >&6; }
2084+ else
2085+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2086+$as_echo "no" >&6; }
2087+ _am_tools=none
2088+ fi
2089+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether GID '$am_gid' is supported by ustar format" >&5
2090+$as_echo_n "checking whether GID '$am_gid' is supported by ustar format... " >&6; }
2091+ if test $am_gid -le $am_max_gid; then
2092+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2093+$as_echo "yes" >&6; }
2094+ else
2095+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2096+$as_echo "no" >&6; }
2097+ _am_tools=none
2098+ fi
2099+
2100+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create a ustar tar archive" >&5
2101+$as_echo_n "checking how to create a ustar tar archive... " >&6; }
2102+
2103+ # Go ahead even if we have the value already cached. We do so because we
2104+ # need to set the values for the 'am__tar' and 'am__untar' variables.
2105+ _am_tools=${am_cv_prog_tar_ustar-$_am_tools}
2106+
2107+ for _am_tool in $_am_tools; do
2108+ case $_am_tool in
2109+ gnutar)
2110+ for _am_tar in tar gnutar gtar; do
2111+ { echo "$as_me:$LINENO: $_am_tar --version" >&5
2112+ ($_am_tar --version) >&5 2>&5
2113+ ac_status=$?
2114+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
2115+ (exit $ac_status); } && break
2116+ done
2117+ am__tar="$_am_tar --format=ustar -chf - "'"$$tardir"'
2118+ am__tar_="$_am_tar --format=ustar -chf - "'"$tardir"'
2119+ am__untar="$_am_tar -xf -"
2120+ ;;
2121+ plaintar)
2122+ # Must skip GNU tar: if it does not support --format= it doesn't create
2123+ # ustar tarball either.
2124+ (tar --version) >/dev/null 2>&1 && continue
2125+ am__tar='tar chf - "$$tardir"'
2126+ am__tar_='tar chf - "$tardir"'
2127+ am__untar='tar xf -'
2128+ ;;
2129+ pax)
2130+ am__tar='pax -L -x ustar -w "$$tardir"'
2131+ am__tar_='pax -L -x ustar -w "$tardir"'
2132+ am__untar='pax -r'
2133+ ;;
2134+ cpio)
2135+ am__tar='find "$$tardir" -print | cpio -o -H ustar -L'
2136+ am__tar_='find "$tardir" -print | cpio -o -H ustar -L'
2137+ am__untar='cpio -i -H ustar -d'
2138+ ;;
2139+ none)
2140+ am__tar=false
2141+ am__tar_=false
2142+ am__untar=false
2143+ ;;
2144+ esac
2145+
2146+ # If the value was cached, stop now. We just wanted to have am__tar
2147+ # and am__untar set.
2148+ test -n "${am_cv_prog_tar_ustar}" && break
2149+
2150+ # tar/untar a dummy directory, and stop if the command works.
2151+ rm -rf conftest.dir
2152+ mkdir conftest.dir
2153+ echo GrepMe > conftest.dir/file
2154+ { echo "$as_me:$LINENO: tardir=conftest.dir && eval $am__tar_ >conftest.tar" >&5
2155+ (tardir=conftest.dir && eval $am__tar_ >conftest.tar) >&5 2>&5
2156+ ac_status=$?
2157+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
2158+ (exit $ac_status); }
2159+ rm -rf conftest.dir
2160+ if test -s conftest.tar; then
2161+ { echo "$as_me:$LINENO: $am__untar <conftest.tar" >&5
2162+ ($am__untar <conftest.tar) >&5 2>&5
2163+ ac_status=$?
2164+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
2165+ (exit $ac_status); }
2166+ { echo "$as_me:$LINENO: cat conftest.dir/file" >&5
2167+ (cat conftest.dir/file) >&5 2>&5
2168+ ac_status=$?
2169+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
2170+ (exit $ac_status); }
2171+ grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
2172+ fi
2173+ done
2174+ rm -rf conftest.dir
2175+
2176+ if ${am_cv_prog_tar_ustar+:} false; then :
2177+ $as_echo_n "(cached) " >&6
2178+else
2179+ am_cv_prog_tar_ustar=$_am_tool
2180+fi
2181+
2182+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_ustar" >&5
2183+$as_echo "$am_cv_prog_tar_ustar" >&6; }
2184+
2185+
2186+
2187+
2188+
2189+
2190+# POSIX will say in a future version that running "rm -f" with no argument
2191+# is OK; and we want to be able to make that assumption in our Makefile
2192+# recipes. So use an aggressive probe to check that the usage we want is
2193+# actually supported "in the wild" to an acceptable degree.
2194+# See automake bug#10828.
2195+# To make any issue more visible, cause the running configure to be aborted
2196+# by default if the 'rm' program in use doesn't match our expectations; the
2197+# user can still override this though.
2198+if rm -f && rm -fr && rm -rf; then : OK; else
2199+ cat >&2 <<'END'
2200+Oops!
2201+
2202+Your 'rm' program seems unable to run without file operands specified
2203+on the command line, even when the '-f' option is present. This is contrary
2204+to the behaviour of most rm programs out there, and not conforming with
2205+the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
2206+
2207+Please tell bug-automake@gnu.org about your system, including the value
2208+of your $PATH and any error possibly output before this message. This
2209+can help us improve future automake versions.
2210+
2211+END
2212+ if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
2213+ echo 'Configuration will proceed anyway, since you have set the' >&2
2214+ echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
2215+ echo >&2
2216+ else
2217+ cat >&2 <<'END'
2218+Aborting the configuration process, to ensure you take notice of the issue.
2219+
2220+You can download and install GNU coreutils to get an 'rm' implementation
2221+that behaves properly: <http://www.gnu.org/software/coreutils/>.
2222+
2223+If you want to complete the configuration process using your problematic
2224+'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
2225+to "yes", and re-run configure.
2226+
2227+END
2228+ as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5
2229+ fi
2230+fi
2231+
2232+
2233
2234 ac_config_files="$ac_config_files Makefile"
2235
2236@@ -1937,6 +2576,15 @@
2237 LTLIBOBJS=$ac_ltlibobjs
2238
2239
2240+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
2241+$as_echo_n "checking that generated files are newer than configure... " >&6; }
2242+ if test -n "$am_sleep_pid"; then
2243+ # Hide warnings about reused PIDs.
2244+ wait $am_sleep_pid 2>/dev/null
2245+ fi
2246+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5
2247+$as_echo "done" >&6; }
2248+
2249
2250 : "${CONFIG_STATUS=./config.status}"
2251 ac_write_fail=0
2252@@ -2334,7 +2982,7 @@
2253 # report actual input values of CONFIG_FILES etc. instead of their
2254 # values after options handling.
2255 ac_log="
2256-This file was extended by hicolor-icon-theme $as_me 0.13, which was
2257+This file was extended by hicolor-icon-theme $as_me 0.14, which was
2258 generated by GNU Autoconf 2.69. Invocation command line was
2259
2260 CONFIG_FILES = $CONFIG_FILES
2261@@ -2387,7 +3035,7 @@
2262 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2263 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
2264 ac_cs_version="\\
2265-hicolor-icon-theme config.status 0.13
2266+hicolor-icon-theme config.status 0.14
2267 configured by $0, generated by GNU Autoconf 2.69,
2268 with options \\"\$ac_cs_config\\"
2269
2270@@ -2398,6 +3046,8 @@
2271 ac_pwd='$ac_pwd'
2272 srcdir='$srcdir'
2273 INSTALL='$INSTALL'
2274+MKDIR_P='$MKDIR_P'
2275+AWK='$AWK'
2276 test -n "\$AWK" || AWK=awk
2277 _ACEOF
2278
2279@@ -2837,6 +3487,11 @@
2280 [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
2281 *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
2282 esac
2283+ ac_MKDIR_P=$MKDIR_P
2284+ case $MKDIR_P in
2285+ [\\/$]* | ?:[\\/]* ) ;;
2286+ */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
2287+ esac
2288 _ACEOF
2289
2290 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2291@@ -2891,6 +3546,7 @@
2292 s&@abs_builddir@&$ac_abs_builddir&;t t
2293 s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
2294 s&@INSTALL@&$ac_INSTALL&;t t
2295+s&@MKDIR_P@&$ac_MKDIR_P&;t t
2296 $ac_datarootdir_hack
2297 "
2298 eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
2299@@ -2953,4 +3609,3 @@
2300 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
2301 fi
2302
2303-
2304
2305=== modified file 'configure.ac'
2306--- configure.ac 2013-12-29 10:37:45 +0000
2307+++ configure.ac 2014-12-30 20:20:45 +0000
2308@@ -1,8 +1,8 @@
2309-AC_INIT([hicolor-icon-theme], [0.13])
2310+AC_INIT([hicolor-icon-theme], [0.14])
2311+AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-xz tar-ustar foreign])
2312
2313 AC_PROG_INSTALL
2314
2315 AC_CONFIG_FILES([Makefile])
2316
2317 AC_OUTPUT
2318-
2319
2320=== modified file 'debian/changelog'
2321--- debian/changelog 2013-12-29 10:37:45 +0000
2322+++ debian/changelog 2014-12-30 20:20:45 +0000
2323@@ -1,3 +1,10 @@
2324+hicolor-icon-theme (0.14-0ubuntu1) vivid; urgency=medium
2325+
2326+ * New upstream release.
2327+ * debian/watch: Upstream now uses .xz
2328+
2329+ -- Jackson Doak <noskcaj@ubuntu.com> Wed, 31 Dec 2014 07:14:43 +1100
2330+
2331 hicolor-icon-theme (0.13-1) unstable; urgency=low
2332
2333 * Set Multi-Arch: foreign. Closes: #616533.
2334
2335=== modified file 'debian/control'
2336--- debian/control 2013-12-29 10:37:45 +0000
2337+++ debian/control 2014-12-30 20:20:45 +0000
2338@@ -6,7 +6,8 @@
2339 Source: hicolor-icon-theme
2340 Section: misc
2341 Priority: optional
2342-Maintainer: Ross Burton <ross@debian.org>
2343+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2344+XSBC-Original-Maintainer: Ross Burton <ross@debian.org>
2345 Uploaders: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>, Josselin Mouette <joss@debian.org>, Loic Minier <lool@dooz.org>
2346 Build-Depends: debhelper (>= 5), cdbs, gnome-pkg-tools
2347 Standards-Version: 3.8.1
2348
2349=== modified file 'debian/control.in'
2350--- debian/control.in 2013-12-29 10:37:45 +0000
2351+++ debian/control.in 2014-12-30 20:20:45 +0000
2352@@ -1,7 +1,8 @@
2353 Source: hicolor-icon-theme
2354 Section: misc
2355 Priority: optional
2356-Maintainer: Ross Burton <ross@debian.org>
2357+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2358+XSBC-Original-Maintainer: Ross Burton <ross@debian.org>
2359 Uploaders: @GNOME_TEAM@
2360 Build-Depends: debhelper (>= 5), cdbs, gnome-pkg-tools
2361 Standards-Version: 3.8.1
2362
2363=== modified file 'debian/watch'
2364--- debian/watch 2005-04-08 12:50:56 +0000
2365+++ debian/watch 2014-12-30 20:20:45 +0000
2366@@ -1,2 +1,2 @@
2367-version=2
2368-http://icon-theme.freedesktop.org/releases/hicolor-icon-theme-(.*)\.tar\.gz
2369+version=3
2370+http://icon-theme.freedesktop.org/releases/hicolor-icon-theme-(.*)\.tar\.xz
2371
2372=== modified file 'install-sh'
2373--- install-sh 2004-06-19 12:49:54 +0000
2374+++ install-sh 2014-12-30 20:20:45 +0000
2375@@ -1,251 +1,527 @@
2376 #!/bin/sh
2377-#
2378 # install - install a program, script, or datafile
2379-# This comes from X11R5 (mit/util/scripts/install.sh).
2380-#
2381-# Copyright 1991 by the Massachusetts Institute of Technology
2382-#
2383-# Permission to use, copy, modify, distribute, and sell this software and its
2384-# documentation for any purpose is hereby granted without fee, provided that
2385-# the above copyright notice appear in all copies and that both that
2386-# copyright notice and this permission notice appear in supporting
2387-# documentation, and that the name of M.I.T. not be used in advertising or
2388-# publicity pertaining to distribution of the software without specific,
2389-# written prior permission. M.I.T. makes no representations about the
2390-# suitability of this software for any purpose. It is provided "as is"
2391-# without express or implied warranty.
2392+
2393+scriptversion=2011-11-20.07; # UTC
2394+
2395+# This originates from X11R5 (mit/util/scripts/install.sh), which was
2396+# later released in X11R6 (xc/config/util/install.sh) with the
2397+# following copyright and license.
2398+#
2399+# Copyright (C) 1994 X Consortium
2400+#
2401+# Permission is hereby granted, free of charge, to any person obtaining a copy
2402+# of this software and associated documentation files (the "Software"), to
2403+# deal in the Software without restriction, including without limitation the
2404+# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
2405+# sell copies of the Software, and to permit persons to whom the Software is
2406+# furnished to do so, subject to the following conditions:
2407+#
2408+# The above copyright notice and this permission notice shall be included in
2409+# all copies or substantial portions of the Software.
2410+#
2411+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2412+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2413+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2414+# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
2415+# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
2416+# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2417+#
2418+# Except as contained in this notice, the name of the X Consortium shall not
2419+# be used in advertising or otherwise to promote the sale, use or other deal-
2420+# ings in this Software without prior written authorization from the X Consor-
2421+# tium.
2422+#
2423+#
2424+# FSF changes to this file are in the public domain.
2425 #
2426 # Calling this script install-sh is preferred over install.sh, to prevent
2427-# `make' implicit rules from creating a file called install from it
2428+# 'make' implicit rules from creating a file called install from it
2429 # when there is no Makefile.
2430 #
2431 # This script is compatible with the BSD install script, but was written
2432-# from scratch. It can only install one file at a time, a restriction
2433-# shared with many OS's install programs.
2434+# from scratch.
2435
2436+nl='
2437+'
2438+IFS=" "" $nl"
2439
2440 # set DOITPROG to echo to test this script
2441
2442 # Don't use :- since 4.3BSD and earlier shells don't like it.
2443-doit="${DOITPROG-}"
2444-
2445-
2446-# put in absolute paths if you don't have them in your path; or use env. vars.
2447-
2448-mvprog="${MVPROG-mv}"
2449-cpprog="${CPPROG-cp}"
2450-chmodprog="${CHMODPROG-chmod}"
2451-chownprog="${CHOWNPROG-chown}"
2452-chgrpprog="${CHGRPPROG-chgrp}"
2453-stripprog="${STRIPPROG-strip}"
2454-rmprog="${RMPROG-rm}"
2455-mkdirprog="${MKDIRPROG-mkdir}"
2456-
2457-transformbasename=""
2458-transform_arg=""
2459-instcmd="$mvprog"
2460-chmodcmd="$chmodprog 0755"
2461-chowncmd=""
2462-chgrpcmd=""
2463-stripcmd=""
2464+doit=${DOITPROG-}
2465+if test -z "$doit"; then
2466+ doit_exec=exec
2467+else
2468+ doit_exec=$doit
2469+fi
2470+
2471+# Put in absolute file names if you don't have them in your path;
2472+# or use environment vars.
2473+
2474+chgrpprog=${CHGRPPROG-chgrp}
2475+chmodprog=${CHMODPROG-chmod}
2476+chownprog=${CHOWNPROG-chown}
2477+cmpprog=${CMPPROG-cmp}
2478+cpprog=${CPPROG-cp}
2479+mkdirprog=${MKDIRPROG-mkdir}
2480+mvprog=${MVPROG-mv}
2481+rmprog=${RMPROG-rm}
2482+stripprog=${STRIPPROG-strip}
2483+
2484+posix_glob='?'
2485+initialize_posix_glob='
2486+ test "$posix_glob" != "?" || {
2487+ if (set -f) 2>/dev/null; then
2488+ posix_glob=
2489+ else
2490+ posix_glob=:
2491+ fi
2492+ }
2493+'
2494+
2495+posix_mkdir=
2496+
2497+# Desired mode of installed file.
2498+mode=0755
2499+
2500+chgrpcmd=
2501+chmodcmd=$chmodprog
2502+chowncmd=
2503+mvcmd=$mvprog
2504 rmcmd="$rmprog -f"
2505-mvcmd="$mvprog"
2506-src=""
2507-dst=""
2508-dir_arg=""
2509-
2510-while [ x"$1" != x ]; do
2511- case $1 in
2512- -c) instcmd="$cpprog"
2513- shift
2514- continue;;
2515-
2516- -d) dir_arg=true
2517- shift
2518- continue;;
2519-
2520- -m) chmodcmd="$chmodprog $2"
2521- shift
2522- shift
2523- continue;;
2524-
2525- -o) chowncmd="$chownprog $2"
2526- shift
2527- shift
2528- continue;;
2529-
2530- -g) chgrpcmd="$chgrpprog $2"
2531- shift
2532- shift
2533- continue;;
2534-
2535- -s) stripcmd="$stripprog"
2536- shift
2537- continue;;
2538-
2539- -t=*) transformarg=`echo $1 | sed 's/-t=//'`
2540- shift
2541- continue;;
2542-
2543- -b=*) transformbasename=`echo $1 | sed 's/-b=//'`
2544- shift
2545- continue;;
2546-
2547- *) if [ x"$src" = x ]
2548+stripcmd=
2549+
2550+src=
2551+dst=
2552+dir_arg=
2553+dst_arg=
2554+
2555+copy_on_change=false
2556+no_target_directory=
2557+
2558+usage="\
2559+Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
2560+ or: $0 [OPTION]... SRCFILES... DIRECTORY
2561+ or: $0 [OPTION]... -t DIRECTORY SRCFILES...
2562+ or: $0 [OPTION]... -d DIRECTORIES...
2563+
2564+In the 1st form, copy SRCFILE to DSTFILE.
2565+In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
2566+In the 4th, create DIRECTORIES.
2567+
2568+Options:
2569+ --help display this help and exit.
2570+ --version display version info and exit.
2571+
2572+ -c (ignored)
2573+ -C install only if different (preserve the last data modification time)
2574+ -d create directories instead of installing files.
2575+ -g GROUP $chgrpprog installed files to GROUP.
2576+ -m MODE $chmodprog installed files to MODE.
2577+ -o USER $chownprog installed files to USER.
2578+ -s $stripprog installed files.
2579+ -t DIRECTORY install into DIRECTORY.
2580+ -T report an error if DSTFILE is a directory.
2581+
2582+Environment variables override the default commands:
2583+ CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
2584+ RMPROG STRIPPROG
2585+"
2586+
2587+while test $# -ne 0; do
2588+ case $1 in
2589+ -c) ;;
2590+
2591+ -C) copy_on_change=true;;
2592+
2593+ -d) dir_arg=true;;
2594+
2595+ -g) chgrpcmd="$chgrpprog $2"
2596+ shift;;
2597+
2598+ --help) echo "$usage"; exit $?;;
2599+
2600+ -m) mode=$2
2601+ case $mode in
2602+ *' '* | *' '* | *'
2603+'* | *'*'* | *'?'* | *'['*)
2604+ echo "$0: invalid mode: $mode" >&2
2605+ exit 1;;
2606+ esac
2607+ shift;;
2608+
2609+ -o) chowncmd="$chownprog $2"
2610+ shift;;
2611+
2612+ -s) stripcmd=$stripprog;;
2613+
2614+ -t) dst_arg=$2
2615+ # Protect names problematic for 'test' and other utilities.
2616+ case $dst_arg in
2617+ -* | [=\(\)!]) dst_arg=./$dst_arg;;
2618+ esac
2619+ shift;;
2620+
2621+ -T) no_target_directory=true;;
2622+
2623+ --version) echo "$0 $scriptversion"; exit $?;;
2624+
2625+ --) shift
2626+ break;;
2627+
2628+ -*) echo "$0: invalid option: $1" >&2
2629+ exit 1;;
2630+
2631+ *) break;;
2632+ esac
2633+ shift
2634+done
2635+
2636+if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
2637+ # When -d is used, all remaining arguments are directories to create.
2638+ # When -t is used, the destination is already specified.
2639+ # Otherwise, the last argument is the destination. Remove it from $@.
2640+ for arg
2641+ do
2642+ if test -n "$dst_arg"; then
2643+ # $@ is not empty: it contains at least $arg.
2644+ set fnord "$@" "$dst_arg"
2645+ shift # fnord
2646+ fi
2647+ shift # arg
2648+ dst_arg=$arg
2649+ # Protect names problematic for 'test' and other utilities.
2650+ case $dst_arg in
2651+ -* | [=\(\)!]) dst_arg=./$dst_arg;;
2652+ esac
2653+ done
2654+fi
2655+
2656+if test $# -eq 0; then
2657+ if test -z "$dir_arg"; then
2658+ echo "$0: no input file specified." >&2
2659+ exit 1
2660+ fi
2661+ # It's OK to call 'install-sh -d' without argument.
2662+ # This can happen when creating conditional directories.
2663+ exit 0
2664+fi
2665+
2666+if test -z "$dir_arg"; then
2667+ do_exit='(exit $ret); exit $ret'
2668+ trap "ret=129; $do_exit" 1
2669+ trap "ret=130; $do_exit" 2
2670+ trap "ret=141; $do_exit" 13
2671+ trap "ret=143; $do_exit" 15
2672+
2673+ # Set umask so as not to create temps with too-generous modes.
2674+ # However, 'strip' requires both read and write access to temps.
2675+ case $mode in
2676+ # Optimize common cases.
2677+ *644) cp_umask=133;;
2678+ *755) cp_umask=22;;
2679+
2680+ *[0-7])
2681+ if test -z "$stripcmd"; then
2682+ u_plus_rw=
2683+ else
2684+ u_plus_rw='% 200'
2685+ fi
2686+ cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
2687+ *)
2688+ if test -z "$stripcmd"; then
2689+ u_plus_rw=
2690+ else
2691+ u_plus_rw=,u+rw
2692+ fi
2693+ cp_umask=$mode$u_plus_rw;;
2694+ esac
2695+fi
2696+
2697+for src
2698+do
2699+ # Protect names problematic for 'test' and other utilities.
2700+ case $src in
2701+ -* | [=\(\)!]) src=./$src;;
2702+ esac
2703+
2704+ if test -n "$dir_arg"; then
2705+ dst=$src
2706+ dstdir=$dst
2707+ test -d "$dstdir"
2708+ dstdir_status=$?
2709+ else
2710+
2711+ # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
2712+ # might cause directories to be created, which would be especially bad
2713+ # if $src (and thus $dsttmp) contains '*'.
2714+ if test ! -f "$src" && test ! -d "$src"; then
2715+ echo "$0: $src does not exist." >&2
2716+ exit 1
2717+ fi
2718+
2719+ if test -z "$dst_arg"; then
2720+ echo "$0: no destination specified." >&2
2721+ exit 1
2722+ fi
2723+ dst=$dst_arg
2724+
2725+ # If destination is a directory, append the input filename; won't work
2726+ # if double slashes aren't ignored.
2727+ if test -d "$dst"; then
2728+ if test -n "$no_target_directory"; then
2729+ echo "$0: $dst_arg: Is a directory" >&2
2730+ exit 1
2731+ fi
2732+ dstdir=$dst
2733+ dst=$dstdir/`basename "$src"`
2734+ dstdir_status=0
2735+ else
2736+ # Prefer dirname, but fall back on a substitute if dirname fails.
2737+ dstdir=`
2738+ (dirname "$dst") 2>/dev/null ||
2739+ expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
2740+ X"$dst" : 'X\(//\)[^/]' \| \
2741+ X"$dst" : 'X\(//\)$' \| \
2742+ X"$dst" : 'X\(/\)' \| . 2>/dev/null ||
2743+ echo X"$dst" |
2744+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
2745+ s//\1/
2746+ q
2747+ }
2748+ /^X\(\/\/\)[^/].*/{
2749+ s//\1/
2750+ q
2751+ }
2752+ /^X\(\/\/\)$/{
2753+ s//\1/
2754+ q
2755+ }
2756+ /^X\(\/\).*/{
2757+ s//\1/
2758+ q
2759+ }
2760+ s/.*/./; q'
2761+ `
2762+
2763+ test -d "$dstdir"
2764+ dstdir_status=$?
2765+ fi
2766+ fi
2767+
2768+ obsolete_mkdir_used=false
2769+
2770+ if test $dstdir_status != 0; then
2771+ case $posix_mkdir in
2772+ '')
2773+ # Create intermediate dirs using mode 755 as modified by the umask.
2774+ # This is like FreeBSD 'install' as of 1997-10-28.
2775+ umask=`umask`
2776+ case $stripcmd.$umask in
2777+ # Optimize common cases.
2778+ *[2367][2367]) mkdir_umask=$umask;;
2779+ .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;
2780+
2781+ *[0-7])
2782+ mkdir_umask=`expr $umask + 22 \
2783+ - $umask % 100 % 40 + $umask % 20 \
2784+ - $umask % 10 % 4 + $umask % 2
2785+ `;;
2786+ *) mkdir_umask=$umask,go-w;;
2787+ esac
2788+
2789+ # With -d, create the new directory with the user-specified mode.
2790+ # Otherwise, rely on $mkdir_umask.
2791+ if test -n "$dir_arg"; then
2792+ mkdir_mode=-m$mode
2793+ else
2794+ mkdir_mode=
2795+ fi
2796+
2797+ posix_mkdir=false
2798+ case $umask in
2799+ *[123567][0-7][0-7])
2800+ # POSIX mkdir -p sets u+wx bits regardless of umask, which
2801+ # is incompatible with FreeBSD 'install' when (umask & 300) != 0.
2802+ ;;
2803+ *)
2804+ tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
2805+ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
2806+
2807+ if (umask $mkdir_umask &&
2808+ exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
2809 then
2810- src=$1
2811+ if test -z "$dir_arg" || {
2812+ # Check for POSIX incompatibilities with -m.
2813+ # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
2814+ # other-writable bit of parent directory when it shouldn't.
2815+ # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
2816+ ls_ld_tmpdir=`ls -ld "$tmpdir"`
2817+ case $ls_ld_tmpdir in
2818+ d????-?r-*) different_mode=700;;
2819+ d????-?--*) different_mode=755;;
2820+ *) false;;
2821+ esac &&
2822+ $mkdirprog -m$different_mode -p -- "$tmpdir" && {
2823+ ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
2824+ test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
2825+ }
2826+ }
2827+ then posix_mkdir=:
2828+ fi
2829+ rmdir "$tmpdir/d" "$tmpdir"
2830 else
2831- # this colon is to work around a 386BSD /bin/sh bug
2832- :
2833- dst=$1
2834+ # Remove any dirs left behind by ancient mkdir implementations.
2835+ rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
2836 fi
2837- shift
2838- continue;;
2839+ trap '' 0;;
2840+ esac;;
2841 esac
2842-done
2843-
2844-if [ x"$src" = x ]
2845-then
2846- echo "install: no input file specified"
2847- exit 1
2848-else
2849- true
2850-fi
2851-
2852-if [ x"$dir_arg" != x ]; then
2853- dst=$src
2854- src=""
2855-
2856- if [ -d $dst ]; then
2857- instcmd=:
2858- chmodcmd=""
2859- else
2860- instcmd=mkdir
2861- fi
2862-else
2863-
2864-# Waiting for this to be detected by the "$instcmd $src $dsttmp" command
2865-# might cause directories to be created, which would be especially bad
2866-# if $src (and thus $dsttmp) contains '*'.
2867-
2868- if [ -f $src -o -d $src ]
2869- then
2870- true
2871- else
2872- echo "install: $src does not exist"
2873- exit 1
2874- fi
2875-
2876- if [ x"$dst" = x ]
2877- then
2878- echo "install: no destination specified"
2879- exit 1
2880- else
2881- true
2882- fi
2883-
2884-# If destination is a directory, append the input filename; if your system
2885-# does not like double slashes in filenames, you may need to add some logic
2886-
2887- if [ -d $dst ]
2888- then
2889- dst="$dst"/`basename $src`
2890- else
2891- true
2892- fi
2893-fi
2894-
2895-## this sed command emulates the dirname command
2896-dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
2897-
2898-# Make sure that the destination directory exists.
2899-# this part is taken from Noah Friedman's mkinstalldirs script
2900-
2901-# Skip lots of stat calls in the usual case.
2902-if [ ! -d "$dstdir" ]; then
2903-defaultIFS='
2904-'
2905-IFS="${IFS-${defaultIFS}}"
2906-
2907-oIFS="${IFS}"
2908-# Some sh's can't handle IFS=/ for some reason.
2909-IFS='%'
2910-set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
2911-IFS="${oIFS}"
2912-
2913-pathcomp=''
2914-
2915-while [ $# -ne 0 ] ; do
2916- pathcomp="${pathcomp}${1}"
2917- shift
2918-
2919- if [ ! -d "${pathcomp}" ] ;
2920- then
2921- $mkdirprog "${pathcomp}"
2922- else
2923- true
2924- fi
2925-
2926- pathcomp="${pathcomp}/"
2927-done
2928-fi
2929-
2930-if [ x"$dir_arg" != x ]
2931-then
2932- $doit $instcmd $dst &&
2933-
2934- if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi &&
2935- if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&
2936- if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&
2937- if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi
2938-else
2939-
2940-# If we're going to rename the final executable, determine the name now.
2941-
2942- if [ x"$transformarg" = x ]
2943- then
2944- dstfile=`basename $dst`
2945- else
2946- dstfile=`basename $dst $transformbasename |
2947- sed $transformarg`$transformbasename
2948- fi
2949-
2950-# don't allow the sed command to completely eliminate the filename
2951-
2952- if [ x"$dstfile" = x ]
2953- then
2954- dstfile=`basename $dst`
2955- else
2956- true
2957- fi
2958-
2959-# Make a temp file name in the proper directory.
2960-
2961- dsttmp=$dstdir/#inst.$$#
2962-
2963-# Move or copy the file name to the temp name
2964-
2965- $doit $instcmd $src $dsttmp &&
2966-
2967- trap "rm -f ${dsttmp}" 0 &&
2968-
2969-# and set any options; do chmod last to preserve setuid bits
2970-
2971-# If any of these fail, we abort the whole thing. If we want to
2972-# ignore errors from any of these, just make sure not to ignore
2973-# errors from the above "$doit $instcmd $src $dsttmp" command.
2974-
2975- if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi &&
2976- if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&
2977- if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&
2978- if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&
2979-
2980-# Now rename the file to the real destination.
2981-
2982- $doit $rmcmd -f $dstdir/$dstfile &&
2983- $doit $mvcmd $dsttmp $dstdir/$dstfile
2984-
2985-fi &&
2986-
2987-
2988-exit 0
2989+
2990+ if
2991+ $posix_mkdir && (
2992+ umask $mkdir_umask &&
2993+ $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
2994+ )
2995+ then :
2996+ else
2997+
2998+ # The umask is ridiculous, or mkdir does not conform to POSIX,
2999+ # or it failed possibly due to a race condition. Create the
3000+ # directory the slow way, step by step, checking for races as we go.
3001+
3002+ case $dstdir in
3003+ /*) prefix='/';;
3004+ [-=\(\)!]*) prefix='./';;
3005+ *) prefix='';;
3006+ esac
3007+
3008+ eval "$initialize_posix_glob"
3009+
3010+ oIFS=$IFS
3011+ IFS=/
3012+ $posix_glob set -f
3013+ set fnord $dstdir
3014+ shift
3015+ $posix_glob set +f
3016+ IFS=$oIFS
3017+
3018+ prefixes=
3019+
3020+ for d
3021+ do
3022+ test X"$d" = X && continue
3023+
3024+ prefix=$prefix$d
3025+ if test -d "$prefix"; then
3026+ prefixes=
3027+ else
3028+ if $posix_mkdir; then
3029+ (umask=$mkdir_umask &&
3030+ $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
3031+ # Don't fail if two instances are running concurrently.
3032+ test -d "$prefix" || exit 1
3033+ else
3034+ case $prefix in
3035+ *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
3036+ *) qprefix=$prefix;;
3037+ esac
3038+ prefixes="$prefixes '$qprefix'"
3039+ fi
3040+ fi
3041+ prefix=$prefix/
3042+ done
3043+
3044+ if test -n "$prefixes"; then
3045+ # Don't fail if two instances are running concurrently.
3046+ (umask $mkdir_umask &&
3047+ eval "\$doit_exec \$mkdirprog $prefixes") ||
3048+ test -d "$dstdir" || exit 1
3049+ obsolete_mkdir_used=true
3050+ fi
3051+ fi
3052+ fi
3053+
3054+ if test -n "$dir_arg"; then
3055+ { test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
3056+ { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
3057+ { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
3058+ test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
3059+ else
3060+
3061+ # Make a couple of temp file names in the proper directory.
3062+ dsttmp=$dstdir/_inst.$$_
3063+ rmtmp=$dstdir/_rm.$$_
3064+
3065+ # Trap to clean up those temp files at exit.
3066+ trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
3067+
3068+ # Copy the file name to the temp name.
3069+ (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
3070+
3071+ # and set any options; do chmod last to preserve setuid bits.
3072+ #
3073+ # If any of these fail, we abort the whole thing. If we want to
3074+ # ignore errors from any of these, just make sure not to ignore
3075+ # errors from the above "$doit $cpprog $src $dsttmp" command.
3076+ #
3077+ { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
3078+ { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
3079+ { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
3080+ { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
3081+
3082+ # If -C, don't bother to copy if it wouldn't change the file.
3083+ if $copy_on_change &&
3084+ old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
3085+ new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` &&
3086+
3087+ eval "$initialize_posix_glob" &&
3088+ $posix_glob set -f &&
3089+ set X $old && old=:$2:$4:$5:$6 &&
3090+ set X $new && new=:$2:$4:$5:$6 &&
3091+ $posix_glob set +f &&
3092+
3093+ test "$old" = "$new" &&
3094+ $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
3095+ then
3096+ rm -f "$dsttmp"
3097+ else
3098+ # Rename the file to the real destination.
3099+ $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
3100+
3101+ # The rename failed, perhaps because mv can't rename something else
3102+ # to itself, or perhaps because mv is so ancient that it does not
3103+ # support -f.
3104+ {
3105+ # Now remove or move aside any old file at destination location.
3106+ # We try this two ways since rm can't unlink itself on some
3107+ # systems and the destination file might be busy for other
3108+ # reasons. In this case, the final cleanup might fail but the new
3109+ # file should still install successfully.
3110+ {
3111+ test ! -f "$dst" ||
3112+ $doit $rmcmd -f "$dst" 2>/dev/null ||
3113+ { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
3114+ { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
3115+ } ||
3116+ { echo "$0: cannot unlink or rename $dst" >&2
3117+ (exit 1); exit 1
3118+ }
3119+ } &&
3120+
3121+ # Now rename the file to the real destination.
3122+ $doit $mvcmd "$dsttmp" "$dst"
3123+ }
3124+ fi || exit 1
3125+
3126+ trap '' 0
3127+ fi
3128+done
3129+
3130+# Local variables:
3131+# eval: (add-hook 'write-file-hooks 'time-stamp)
3132+# time-stamp-start: "scriptversion="
3133+# time-stamp-format: "%:y-%02m-%02d.%02H"
3134+# time-stamp-time-zone: "UTC"
3135+# time-stamp-end: "; # UTC"
3136+# End:
3137
3138=== added file 'missing'
3139--- missing 1970-01-01 00:00:00 +0000
3140+++ missing 2014-12-30 20:20:45 +0000
3141@@ -0,0 +1,215 @@
3142+#! /bin/sh
3143+# Common wrapper for a few potentially missing GNU programs.
3144+
3145+scriptversion=2013-10-28.13; # UTC
3146+
3147+# Copyright (C) 1996-2013 Free Software Foundation, Inc.
3148+# Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
3149+
3150+# This program is free software; you can redistribute it and/or modify
3151+# it under the terms of the GNU General Public License as published by
3152+# the Free Software Foundation; either version 2, or (at your option)
3153+# any later version.
3154+
3155+# This program is distributed in the hope that it will be useful,
3156+# but WITHOUT ANY WARRANTY; without even the implied warranty of
3157+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3158+# GNU General Public License for more details.
3159+
3160+# You should have received a copy of the GNU General Public License
3161+# along with this program. If not, see <http://www.gnu.org/licenses/>.
3162+
3163+# As a special exception to the GNU General Public License, if you
3164+# distribute this file as part of a program that contains a
3165+# configuration script generated by Autoconf, you may include it under
3166+# the same distribution terms that you use for the rest of that program.
3167+
3168+if test $# -eq 0; then
3169+ echo 1>&2 "Try '$0 --help' for more information"
3170+ exit 1
3171+fi
3172+
3173+case $1 in
3174+
3175+ --is-lightweight)
3176+ # Used by our autoconf macros to check whether the available missing
3177+ # script is modern enough.
3178+ exit 0
3179+ ;;
3180+
3181+ --run)
3182+ # Back-compat with the calling convention used by older automake.
3183+ shift
3184+ ;;
3185+
3186+ -h|--h|--he|--hel|--help)
3187+ echo "\
3188+$0 [OPTION]... PROGRAM [ARGUMENT]...
3189+
3190+Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due
3191+to PROGRAM being missing or too old.
3192+
3193+Options:
3194+ -h, --help display this help and exit
3195+ -v, --version output version information and exit
3196+
3197+Supported PROGRAM values:
3198+ aclocal autoconf autoheader autom4te automake makeinfo
3199+ bison yacc flex lex help2man
3200+
3201+Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and
3202+'g' are ignored when checking the name.
3203+
3204+Send bug reports to <bug-automake@gnu.org>."
3205+ exit $?
3206+ ;;
3207+
3208+ -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
3209+ echo "missing $scriptversion (GNU Automake)"
3210+ exit $?
3211+ ;;
3212+
3213+ -*)
3214+ echo 1>&2 "$0: unknown '$1' option"
3215+ echo 1>&2 "Try '$0 --help' for more information"
3216+ exit 1
3217+ ;;
3218+
3219+esac
3220+
3221+# Run the given program, remember its exit status.
3222+"$@"; st=$?
3223+
3224+# If it succeeded, we are done.
3225+test $st -eq 0 && exit 0
3226+
3227+# Also exit now if we it failed (or wasn't found), and '--version' was
3228+# passed; such an option is passed most likely to detect whether the
3229+# program is present and works.
3230+case $2 in --version|--help) exit $st;; esac
3231+
3232+# Exit code 63 means version mismatch. This often happens when the user
3233+# tries to use an ancient version of a tool on a file that requires a
3234+# minimum version.
3235+if test $st -eq 63; then
3236+ msg="probably too old"
3237+elif test $st -eq 127; then
3238+ # Program was missing.
3239+ msg="missing on your system"
3240+else
3241+ # Program was found and executed, but failed. Give up.
3242+ exit $st
3243+fi
3244+
3245+perl_URL=http://www.perl.org/
3246+flex_URL=http://flex.sourceforge.net/
3247+gnu_software_URL=http://www.gnu.org/software
3248+
3249+program_details ()
3250+{
3251+ case $1 in
3252+ aclocal|automake)
3253+ echo "The '$1' program is part of the GNU Automake package:"
3254+ echo "<$gnu_software_URL/automake>"
3255+ echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:"
3256+ echo "<$gnu_software_URL/autoconf>"
3257+ echo "<$gnu_software_URL/m4/>"
3258+ echo "<$perl_URL>"
3259+ ;;
3260+ autoconf|autom4te|autoheader)
3261+ echo "The '$1' program is part of the GNU Autoconf package:"
3262+ echo "<$gnu_software_URL/autoconf/>"
3263+ echo "It also requires GNU m4 and Perl in order to run:"
3264+ echo "<$gnu_software_URL/m4/>"
3265+ echo "<$perl_URL>"
3266+ ;;
3267+ esac
3268+}
3269+
3270+give_advice ()
3271+{
3272+ # Normalize program name to check for.
3273+ normalized_program=`echo "$1" | sed '
3274+ s/^gnu-//; t
3275+ s/^gnu//; t
3276+ s/^g//; t'`
3277+
3278+ printf '%s\n' "'$1' is $msg."
3279+
3280+ configure_deps="'configure.ac' or m4 files included by 'configure.ac'"
3281+ case $normalized_program in
3282+ autoconf*)
3283+ echo "You should only need it if you modified 'configure.ac',"
3284+ echo "or m4 files included by it."
3285+ program_details 'autoconf'
3286+ ;;
3287+ autoheader*)
3288+ echo "You should only need it if you modified 'acconfig.h' or"
3289+ echo "$configure_deps."
3290+ program_details 'autoheader'
3291+ ;;
3292+ automake*)
3293+ echo "You should only need it if you modified 'Makefile.am' or"
3294+ echo "$configure_deps."
3295+ program_details 'automake'
3296+ ;;
3297+ aclocal*)
3298+ echo "You should only need it if you modified 'acinclude.m4' or"
3299+ echo "$configure_deps."
3300+ program_details 'aclocal'
3301+ ;;
3302+ autom4te*)
3303+ echo "You might have modified some maintainer files that require"
3304+ echo "the 'autom4te' program to be rebuilt."
3305+ program_details 'autom4te'
3306+ ;;
3307+ bison*|yacc*)
3308+ echo "You should only need it if you modified a '.y' file."
3309+ echo "You may want to install the GNU Bison package:"
3310+ echo "<$gnu_software_URL/bison/>"
3311+ ;;
3312+ lex*|flex*)
3313+ echo "You should only need it if you modified a '.l' file."
3314+ echo "You may want to install the Fast Lexical Analyzer package:"
3315+ echo "<$flex_URL>"
3316+ ;;
3317+ help2man*)
3318+ echo "You should only need it if you modified a dependency" \
3319+ "of a man page."
3320+ echo "You may want to install the GNU Help2man package:"
3321+ echo "<$gnu_software_URL/help2man/>"
3322+ ;;
3323+ makeinfo*)
3324+ echo "You should only need it if you modified a '.texi' file, or"
3325+ echo "any other file indirectly affecting the aspect of the manual."
3326+ echo "You might want to install the Texinfo package:"
3327+ echo "<$gnu_software_URL/texinfo/>"
3328+ echo "The spurious makeinfo call might also be the consequence of"
3329+ echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might"
3330+ echo "want to install GNU make:"
3331+ echo "<$gnu_software_URL/make/>"
3332+ ;;
3333+ *)
3334+ echo "You might have modified some files without having the proper"
3335+ echo "tools for further handling them. Check the 'README' file, it"
3336+ echo "often tells you about the needed prerequisites for installing"
3337+ echo "this package. You may also peek at any GNU archive site, in"
3338+ echo "case some other package contains this missing '$1' program."
3339+ ;;
3340+ esac
3341+}
3342+
3343+give_advice "$1" | sed -e '1s/^/WARNING: /' \
3344+ -e '2,$s/^/ /' >&2
3345+
3346+# Propagate the correct exit status (expected to be 127 for a program
3347+# not found, 63 for a program that failed due to version mismatch).
3348+exit $st
3349+
3350+# Local variables:
3351+# eval: (add-hook 'write-file-hooks 'time-stamp)
3352+# time-stamp-start: "scriptversion="
3353+# time-stamp-format: "%:y-%02m-%02d.%02H"
3354+# time-stamp-time-zone: "UTC"
3355+# time-stamp-end: "; # UTC"
3356+# End:

Subscribers

People subscribed via source and target branches

to all changes: