~ubuntu-branches/ubuntu/wily/kbd/wily-proposed

« back to all changes in this revision

Viewing changes to man/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Allison Randal
  • Date: 2011-05-10 14:10:03 UTC
  • mfrom: (1.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20110510141003-spp7i52i1alpqdq9
Tags: 1.15.2-3ubuntu1
* Merge from debian unstable (LP: #779388). Remaining changes:
  - Add setfont, kbd_mode, and loadkeys to initramfs for console-setup.
  - Use ckbcomp to get the keyboard layout if other data files are not
    available.
  - Depend on console-setup, and remove config file; we now only
    support systems using console-setup and so it no longer serves
    a purpose. The removed config file for console-screen has changed
    names from /etc/init.d/console-screen.kbd.sh to /etc/init.d/kbd.
  - Change loadkeys to find any console not in raw mode when invoked
    without an explicit console parameter. (In case the foreground
    console is in raw mode.)
  - Add a 'setvtrgb' utility to configure vt/console colors.
* debian/control:
  - Bump Standards-Version to 3.9.2, no changes needed.
  - Update Build-Depends for debhelper to version 8.1.0.
* Simplify maintainer scripts for conffile removal, using new
  features in updated version of debhelper.
* Add 'setvtrgb' manpage to man8 makefile, so it will install.
* debian/rules: Move 'setvtrgb' binary to extra binaries, as udeb
  binaries are now handled differently.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.10.1a from Makefile.am.
 
1
# Makefile.in generated by automake 1.11.1a from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
 
# 2003, 2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
 
5
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010  Free Software
 
6
# Foundation, Inc.
6
7
# This Makefile.in is free software; the Free Software Foundation
7
8
# gives unlimited permission to copy and/or distribute it,
8
9
# with or without modifications, as long as this notice is preserved.
15
16
@SET_MAKE@
16
17
VPATH = @srcdir@
17
18
pkgdatadir = $(datadir)/@PACKAGE@
 
19
pkgincludedir = $(includedir)/@PACKAGE@
18
20
pkglibdir = $(libdir)/@PACKAGE@
19
 
pkgincludedir = $(includedir)/@PACKAGE@
 
21
pkglibexecdir = $(libexecdir)/@PACKAGE@
20
22
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
21
23
install_sh_DATA = $(install_sh) -c -m 644
22
24
install_sh_PROGRAM = $(install_sh) -c
35
37
subdir = man
36
38
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
37
39
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
38
 
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
 
40
am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \
 
41
        $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/klibc.m4 \
 
42
        $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
 
43
        $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/nls.m4 \
 
44
        $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \
 
45
        $(top_srcdir)/configure.ac
39
46
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
40
47
        $(ACLOCAL_M4)
41
 
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
 
48
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
42
49
CONFIG_HEADER = $(top_builddir)/config.h
43
50
CONFIG_CLEAN_FILES =
 
51
CONFIG_CLEAN_VPATH_FILES =
44
52
SOURCES =
45
53
DIST_SOURCES =
46
54
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
52
60
        ps-recursive uninstall-recursive
53
61
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
54
62
  distclean-recursive maintainer-clean-recursive
 
63
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
 
64
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
65
        distdir
55
66
ETAGS = etags
56
67
CTAGS = ctags
57
68
DIST_SUBDIRS = man1 man5 man8 man1misc man8misc
58
69
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
70
am__relativize = \
 
71
  dir0=`pwd`; \
 
72
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
 
73
  sed_rest='s,^[^/]*/*,,'; \
 
74
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
 
75
  sed_butlast='s,/*[^/]*$$,,'; \
 
76
  while test -n "$$dir1"; do \
 
77
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
 
78
    if test "$$first" != "."; then \
 
79
      if test "$$first" = ".."; then \
 
80
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
 
81
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
 
82
      else \
 
83
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
 
84
        if test "$$first2" = "$$first"; then \
 
85
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
 
86
        else \
 
87
          dir2="../$$dir2"; \
 
88
        fi; \
 
89
        dir0="$$dir0"/"$$first"; \
 
90
      fi; \
 
91
    fi; \
 
92
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
 
93
  done; \
 
94
  reldir="$$dir2"
59
95
ACLOCAL = @ACLOCAL@
60
96
AMTAR = @AMTAR@
61
97
AUTOCONF = @AUTOCONF@
75
111
ECHO_T = @ECHO_T@
76
112
EGREP = @EGREP@
77
113
EXEEXT = @EXEEXT@
78
 
FOREIGN = @FOREIGN@
 
114
GMSGFMT = @GMSGFMT@
79
115
GREP = @GREP@
80
 
HAVE_XGETTEXT = @HAVE_XGETTEXT@
81
116
INSTALL = @INSTALL@
82
117
INSTALL_DATA = @INSTALL_DATA@
83
118
INSTALL_PROGRAM = @INSTALL_PROGRAM@
84
119
INSTALL_SCRIPT = @INSTALL_SCRIPT@
85
120
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
121
INTLLIBS = @INTLLIBS@
 
122
KLCC = @KLCC@
 
123
KLIBC = @KLIBC@
86
124
LDFLAGS = @LDFLAGS@
87
125
LEX = @LEX@
88
126
LEXLIB = @LEXLIB@
89
127
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
 
128
LIBICONV = @LIBICONV@
 
129
LIBINTL = @LIBINTL@
90
130
LIBOBJS = @LIBOBJS@
91
131
LIBS = @LIBS@
92
132
LN_S = @LN_S@
 
133
LTLIBICONV = @LTLIBICONV@
 
134
LTLIBINTL = @LTLIBINTL@
93
135
LTLIBOBJS = @LTLIBOBJS@
94
136
MAKEINFO = @MAKEINFO@
95
137
MKDIR_P = @MKDIR_P@
 
138
MKINSTALLDIRS = @MKINSTALLDIRS@
 
139
MSGFMT = @MSGFMT@
 
140
MSGMERGE = @MSGMERGE@
96
141
OBJEXT = @OBJEXT@
97
142
PACKAGE = @PACKAGE@
98
143
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
99
144
PACKAGE_NAME = @PACKAGE_NAME@
100
145
PACKAGE_STRING = @PACKAGE_STRING@
101
146
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
147
PACKAGE_URL = @PACKAGE_URL@
102
148
PACKAGE_VERSION = @PACKAGE_VERSION@
103
149
PATH_SEPARATOR = @PATH_SEPARATOR@
 
150
POSUB = @POSUB@
104
151
SED = @SED@
105
152
SET_MAKE = @SET_MAKE@
106
153
SHELL = @SHELL@
107
154
STRIP = @STRIP@
 
155
USE_NLS = @USE_NLS@
108
156
VERSION = @VERSION@
 
157
XGETTEXT = @XGETTEXT@
109
158
YACC = @YACC@
110
159
YFLAGS = @YFLAGS@
111
160
abs_builddir = @abs_builddir@
166
215
        @for dep in $?; do \
167
216
          case '$(am__configure_deps)' in \
168
217
            *$$dep*) \
169
 
              cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
170
 
                && exit 0; \
 
218
              ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
 
219
                && { if test -f $@; then exit 0; else break; fi; }; \
171
220
              exit 1;; \
172
221
          esac; \
173
222
        done; \
174
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  man/Makefile'; \
175
 
        cd $(top_srcdir) && \
176
 
          $(AUTOMAKE) --gnu  man/Makefile
 
223
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu man/Makefile'; \
 
224
        $(am__cd) $(top_srcdir) && \
 
225
          $(AUTOMAKE) --gnu man/Makefile
177
226
.PRECIOUS: Makefile
178
227
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
179
228
        @case '$?' in \
191
240
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
192
241
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
193
242
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
243
$(am__aclocal_m4_deps):
194
244
 
195
245
# This directory's subdirectories are mostly independent; you can cd
196
246
# into them and run `make' without going through this Makefile.
199
249
#     (which will cause the Makefiles to be regenerated when you run `make');
200
250
# (2) otherwise, pass the desired values on the `make' command line.
201
251
$(RECURSIVE_TARGETS):
202
 
        @failcom='exit 1'; \
 
252
        @fail= failcom='exit 1'; \
203
253
        for f in x $$MAKEFLAGS; do \
204
254
          case $$f in \
205
255
            *=* | --[!k]*);; \
216
266
          else \
217
267
            local_target="$$target"; \
218
268
          fi; \
219
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
269
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
220
270
          || eval $$failcom; \
221
271
        done; \
222
272
        if test "$$dot_seen" = "no"; then \
224
274
        fi; test -z "$$fail"
225
275
 
226
276
$(RECURSIVE_CLEAN_TARGETS):
227
 
        @failcom='exit 1'; \
 
277
        @fail= failcom='exit 1'; \
228
278
        for f in x $$MAKEFLAGS; do \
229
279
          case $$f in \
230
280
            *=* | --[!k]*);; \
250
300
          else \
251
301
            local_target="$$target"; \
252
302
          fi; \
253
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
303
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
254
304
          || eval $$failcom; \
255
305
        done && test -z "$$fail"
256
306
tags-recursive:
257
307
        list='$(SUBDIRS)'; for subdir in $$list; do \
258
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
308
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
259
309
        done
260
310
ctags-recursive:
261
311
        list='$(SUBDIRS)'; for subdir in $$list; do \
262
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
312
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
263
313
        done
264
314
 
265
315
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
274
324
 
275
325
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
276
326
                $(TAGS_FILES) $(LISP)
277
 
        tags=; \
 
327
        set x; \
278
328
        here=`pwd`; \
279
329
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
280
330
          include_option=--etags-include; \
286
336
        list='$(SUBDIRS)'; for subdir in $$list; do \
287
337
          if test "$$subdir" = .; then :; else \
288
338
            test ! -f $$subdir/TAGS || \
289
 
              tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
339
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
290
340
          fi; \
291
341
        done; \
292
342
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
295
345
          done | \
296
346
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
297
347
              END { if (nonempty) { for (i in files) print i; }; }'`; \
298
 
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
348
        shift; \
 
349
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
299
350
          test -n "$$unique" || unique=$$empty_fix; \
300
 
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
301
 
            $$tags $$unique; \
 
351
          if test $$# -gt 0; then \
 
352
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
353
              "$$@" $$unique; \
 
354
          else \
 
355
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
356
              $$unique; \
 
357
          fi; \
302
358
        fi
303
359
ctags: CTAGS
304
360
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
305
361
                $(TAGS_FILES) $(LISP)
306
 
        tags=; \
307
362
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
308
363
        unique=`for i in $$list; do \
309
364
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
310
365
          done | \
311
366
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
312
367
              END { if (nonempty) { for (i in files) print i; }; }'`; \
313
 
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
368
        test -z "$(CTAGS_ARGS)$$unique" \
314
369
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
315
 
             $$tags $$unique
 
370
             $$unique
316
371
 
317
372
GTAGS:
318
373
        here=`$(am__cd) $(top_builddir) && pwd` \
319
 
          && cd $(top_srcdir) \
320
 
          && gtags -i $(GTAGS_ARGS) $$here
 
374
          && $(am__cd) $(top_srcdir) \
 
375
          && gtags -i $(GTAGS_ARGS) "$$here"
321
376
 
322
377
distclean-tags:
323
378
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
338
393
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
339
394
          if test -d $$d/$$file; then \
340
395
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 
396
            if test -d "$(distdir)/$$file"; then \
 
397
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
398
            fi; \
341
399
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
342
 
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
400
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 
401
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
343
402
            fi; \
344
 
            cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
403
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
345
404
          else \
346
 
            test -f $(distdir)/$$file \
347
 
            || cp -p $$d/$$file $(distdir)/$$file \
 
405
            test -f "$(distdir)/$$file" \
 
406
            || cp -p $$d/$$file "$(distdir)/$$file" \
348
407
            || exit 1; \
349
408
          fi; \
350
409
        done
351
 
        list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
410
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
352
411
          if test "$$subdir" = .; then :; else \
353
412
            test -d "$(distdir)/$$subdir" \
354
413
            || $(MKDIR_P) "$(distdir)/$$subdir" \
355
414
            || exit 1; \
356
 
            distdir=`$(am__cd) $(distdir) && pwd`; \
357
 
            top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
358
 
            (cd $$subdir && \
 
415
          fi; \
 
416
        done
 
417
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
418
          if test "$$subdir" = .; then :; else \
 
419
            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 
420
            $(am__relativize); \
 
421
            new_distdir=$$reldir; \
 
422
            dir1=$$subdir; dir2="$(top_distdir)"; \
 
423
            $(am__relativize); \
 
424
            new_top_distdir=$$reldir; \
 
425
            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
 
426
            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
 
427
            ($(am__cd) $$subdir && \
359
428
              $(MAKE) $(AM_MAKEFLAGS) \
360
 
                top_distdir="$$top_distdir" \
361
 
                distdir="$$distdir/$$subdir" \
 
429
                top_distdir="$$new_top_distdir" \
 
430
                distdir="$$new_distdir" \
362
431
                am__remove_distdir=: \
363
432
                am__skip_length_check=: \
 
433
                am__skip_mode_fix=: \
364
434
                distdir) \
365
435
              || exit 1; \
366
436
          fi; \
390
460
 
391
461
distclean-generic:
392
462
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
463
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
393
464
 
394
465
maintainer-clean-generic:
395
466
        @echo "This command is intended for maintainers to use"
408
479
 
409
480
html: html-recursive
410
481
 
 
482
html-am:
 
483
 
411
484
info: info-recursive
412
485
 
413
486
info-am:
416
489
 
417
490
install-dvi: install-dvi-recursive
418
491
 
 
492
install-dvi-am:
 
493
 
419
494
install-exec-am:
420
495
 
421
496
install-html: install-html-recursive
422
497
 
 
498
install-html-am:
 
499
 
423
500
install-info: install-info-recursive
424
501
 
 
502
install-info-am:
 
503
 
425
504
install-man:
426
505
 
427
506
install-pdf: install-pdf-recursive
428
507
 
 
508
install-pdf-am:
 
509
 
429
510
install-ps: install-ps-recursive
430
511
 
 
512
install-ps-am:
 
513
 
431
514
installcheck-am:
432
515
 
433
516
maintainer-clean: maintainer-clean-recursive
448
531
 
449
532
uninstall-am:
450
533
 
451
 
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
452
 
        install-strip
 
534
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
 
535
        install-am install-strip tags-recursive
453
536
 
454
537
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
455
538
        all all-am check check-am clean clean-generic ctags \
464
547
        mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \
465
548
        tags-recursive uninstall uninstall-am
466
549
 
 
550
 
467
551
# Tell versions [3.59,3.63) of GNU make to not export all variables.
468
552
# Otherwise a system limit (for SysV at least) may be exceeded.
469
553
.NOEXPORT: