~ubuntu-branches/ubuntu/trusty/foxtrotgps/trusty

« back to all changes in this revision

Viewing changes to data/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Daniel Baumann
  • Date: 2012-02-14 06:13:28 UTC
  • mfrom: (11.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20120214061328-3pa58mr5jtibvi2k
Tags: 1.1.0-1
* Using compression level 9 also for binary packages.
* Merging upstream version 1.1.0:
  - includes osb2tango and poi2osm (Closes: #647986).
* Removing curl.patch, included upstream.
* Updating to debhelper version 9.
* Updating years in copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
71
71
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
72
72
am__installdirs = "$(DESTDIR)$(pkgdatadir)" \
73
 
        "$(DESTDIR)$(foxtrotgps_datadir)"
74
 
DATA = $(dist_pkgdata_DATA) $(foxtrotgps_data_DATA)
 
73
        "$(DESTDIR)$(foxtrotgps_datadir)" \
 
74
        "$(DESTDIR)$(gconf_schemadir)"
 
75
DATA = $(dist_pkgdata_DATA) $(foxtrotgps_data_DATA) \
 
76
        $(gconf_schema_DATA)
75
77
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
76
78
ACLOCAL = @ACLOCAL@
77
79
ALL_LINGUAS = @ALL_LINGUAS@
81
83
AUTOHEADER = @AUTOHEADER@
82
84
AUTOMAKE = @AUTOMAKE@
83
85
AWK = @AWK@
 
86
BLUETOOTH_CFLAGS = @BLUETOOTH_CFLAGS@
 
87
BLUETOOTH_LIBS = @BLUETOOTH_LIBS@
84
88
CATALOGS = @CATALOGS@
85
89
CATOBJEXT = @CATOBJEXT@
86
90
CC = @CC@
100
104
EGREP = @EGREP@
101
105
EXEEXT = @EXEEXT@
102
106
FGREP = @FGREP@
 
107
GCONFTOOL2 = @GCONFTOOL2@
103
108
GCONF_CFLAGS = @GCONF_CFLAGS@
104
109
GCONF_LIBS = @GCONF_LIBS@
 
110
GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
 
111
GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@
105
112
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
106
113
GLADE_CFLAGS = @GLADE_CFLAGS@
107
114
GLADE_LIBS = @GLADE_LIBS@
230
237
foxtrotgps_datadir = $(datadir)/applications
231
238
foxtrotgps_data_in_files = foxtrotgps.desktop.in
232
239
foxtrotgps_data_DATA = $(foxtrotgps_data_in_files:.desktop.in=.desktop)
 
240
gconf_schemadir = $(GCONF_SCHEMA_FILE_DIR)
 
241
gconf_schema_in_files = apps_foxtrotgps.schemas.in
 
242
gconf_schema_DATA = $(gconf_schema_in_files:.schemas.in=.schemas)
233
243
dist_pkgdata_DATA = foxtrotgps.glade
234
 
EXTRA_DIST = $(foxtrotgps_data_in_files)
235
 
DISTCLEANFILES = $(foxtrotgps_data_in_files:.desktop.in=.desktop)
 
244
EXTRA_DIST = $(foxtrotgps_data_in_files) $(gconf_schema_in_files)
 
245
DISTCLEANFILES = \
 
246
        $(foxtrotgps_data_in_files:.desktop.in=.desktop) \
 
247
        $(gconf_schema_in_files:.schemas.in=.schemas)
 
248
 
236
249
all: all-am
237
250
 
238
251
.SUFFIXES:
312
325
        test -n "$$files" || exit 0; \
313
326
        echo " ( cd '$(DESTDIR)$(foxtrotgps_datadir)' && rm -f" $$files ")"; \
314
327
        cd "$(DESTDIR)$(foxtrotgps_datadir)" && rm -f $$files
 
328
install-gconf_schemaDATA: $(gconf_schema_DATA)
 
329
        @$(NORMAL_INSTALL)
 
330
        test -z "$(gconf_schemadir)" || $(MKDIR_P) "$(DESTDIR)$(gconf_schemadir)"
 
331
        @list='$(gconf_schema_DATA)'; test -n "$(gconf_schemadir)" || list=; \
 
332
        for p in $$list; do \
 
333
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
334
          echo "$$d$$p"; \
 
335
        done | $(am__base_list) | \
 
336
        while read files; do \
 
337
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(gconf_schemadir)'"; \
 
338
          $(INSTALL_DATA) $$files "$(DESTDIR)$(gconf_schemadir)" || exit $$?; \
 
339
        done
 
340
 
 
341
uninstall-gconf_schemaDATA:
 
342
        @$(NORMAL_UNINSTALL)
 
343
        @list='$(gconf_schema_DATA)'; test -n "$(gconf_schemadir)" || list=; \
 
344
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 
345
        test -n "$$files" || exit 0; \
 
346
        echo " ( cd '$(DESTDIR)$(gconf_schemadir)' && rm -f" $$files ")"; \
 
347
        cd "$(DESTDIR)$(gconf_schemadir)" && rm -f $$files
315
348
tags: TAGS
316
349
TAGS:
317
350
 
353
386
check: check-am
354
387
all-am: Makefile $(DATA)
355
388
installdirs:
356
 
        for dir in "$(DESTDIR)$(pkgdatadir)" "$(DESTDIR)$(foxtrotgps_datadir)"; do \
 
389
        for dir in "$(DESTDIR)$(pkgdatadir)" "$(DESTDIR)$(foxtrotgps_datadir)" "$(DESTDIR)$(gconf_schemadir)"; do \
357
390
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
358
391
        done
359
392
install: install-am
382
415
maintainer-clean-generic:
383
416
        @echo "This command is intended for maintainers to use"
384
417
        @echo "it deletes files that may require special tools to rebuild."
 
418
@GCONF_SCHEMAS_INSTALL_FALSE@uninstall-local:
 
419
@GCONF_SCHEMAS_INSTALL_FALSE@install-data-local:
385
420
clean: clean-am
386
421
 
387
422
clean-am: clean-generic clean-libtool mostlyclean-am
402
437
 
403
438
info-am:
404
439
 
405
 
install-data-am: install-dist_pkgdataDATA install-foxtrotgps_dataDATA
 
440
install-data-am: install-data-local install-dist_pkgdataDATA \
 
441
        install-foxtrotgps_dataDATA install-gconf_schemaDATA
406
442
 
407
443
install-dvi: install-dvi-am
408
444
 
446
482
 
447
483
ps-am:
448
484
 
449
 
uninstall-am: uninstall-dist_pkgdataDATA uninstall-foxtrotgps_dataDATA
 
485
uninstall-am: uninstall-dist_pkgdataDATA uninstall-foxtrotgps_dataDATA \
 
486
        uninstall-gconf_schemaDATA uninstall-local
450
487
 
451
488
.MAKE: install-am install-strip
452
489
 
453
490
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
454
491
        distclean distclean-generic distclean-libtool distdir dvi \
455
492
        dvi-am html html-am info info-am install install-am \
456
 
        install-data install-data-am install-dist_pkgdataDATA \
457
 
        install-dvi install-dvi-am install-exec install-exec-am \
458
 
        install-foxtrotgps_dataDATA install-html install-html-am \
 
493
        install-data install-data-am install-data-local \
 
494
        install-dist_pkgdataDATA install-dvi install-dvi-am \
 
495
        install-exec install-exec-am install-foxtrotgps_dataDATA \
 
496
        install-gconf_schemaDATA install-html install-html-am \
459
497
        install-info install-info-am install-man install-pdf \
460
498
        install-pdf-am install-ps install-ps-am install-strip \
461
499
        installcheck installcheck-am installdirs maintainer-clean \
462
500
        maintainer-clean-generic mostlyclean mostlyclean-generic \
463
501
        mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
464
 
        uninstall-dist_pkgdataDATA uninstall-foxtrotgps_dataDATA
 
502
        uninstall-dist_pkgdataDATA uninstall-foxtrotgps_dataDATA \
 
503
        uninstall-gconf_schemaDATA uninstall-local
465
504
 
466
505
 
467
506
@INTLTOOL_DESKTOP_RULE@
468
507
 
 
508
@INTLTOOL_SCHEMAS_RULE@
 
509
 
 
510
@GCONF_SCHEMAS_INSTALL_TRUE@install-data-local:
 
511
@GCONF_SCHEMAS_INSTALL_TRUE@    GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
 
512
@GCONF_SCHEMAS_INSTALL_TRUE@    $(GCONFTOOL2) --makefile-install-rule $(gconf_schema_DATA)
 
513
 
 
514
@GCONF_SCHEMAS_INSTALL_TRUE@uninstall-local:
 
515
@GCONF_SCHEMAS_INSTALL_TRUE@    GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
 
516
@GCONF_SCHEMAS_INSTALL_TRUE@    $(GCONFTOOL2) --makefile-uninstall-rule $(gconf_schema_DATA)
 
517
 
469
518
# Tell versions [3.59,3.63) of GNU make to not export all variables.
470
519
# Otherwise a system limit (for SysV at least) may be exceeded.
471
520
.NOEXPORT: