~ubuntu-branches/ubuntu/hardy/gnome-applets/hardy-updates

« back to all changes in this revision

Viewing changes to gnome-doc-utils.make

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-03-10 10:20:15 UTC
  • mfrom: (1.1.27 upstream)
  • Revision ID: james.westby@ubuntu.com-20080310102015-d46428z4vws97he8
Tags: 2.22.0-0ubuntu1
* New upstream version
* debian/control.in:
  - updated gnome-settings-daemon build depends
* debian/patches/16_correct_keyboard_accessibility.patch:
  - dropped, fixed in the new version
* debian/patches/98_autoreconf.patch:
  - new version update
* debian/patches/99_ltmain_as-needed.patch:
  - new version update

Show diffs side-by-side

added added

removed removed

Lines of Context:
416
416
        @list='$(_DOC_C_DOCS) $(_DOC_LC_DOCS) $(_DOC_POFILES)'; \
417
417
        for doc in $$list; do \
418
418
          if test -f "$$doc"; then d=; else d="$(srcdir)/"; fi; \
419
 
            docdir=`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \
420
 
            if ! test -d "$(distdir)/$$docdir"; then \
421
 
              echo "$(mkinstalldirs) $(distdir)/$$docdir"; \
422
 
              $(mkinstalldirs) "$(distdir)/$$docdir"; \
423
 
            fi; \
424
419
          echo "$(INSTALL_DATA) $$d$$doc $(distdir)/$$doc"; \
425
420
          $(INSTALL_DATA) "$$d$$doc" "$(distdir)/$$doc"; \
426
421
        done
491
486
        done
492
487
        @list='$(_DOC_C_DOCS) $(_DOC_LC_DOCS)'; for doc in $$list; do \
493
488
          if test -f "$$doc"; then d=; else d="$(srcdir)/"; fi; \
494
 
          docdir="$$lc/"`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \
495
 
          docdir="$(DESTDIR)$(HELP_DIR)/$(DOC_MODULE)/$$docdir"; \
496
 
          if ! test -d "$$docdir"; then \
497
 
            echo "$(mkinstalldirs) $$docdir"; \
498
 
            $(mkinstalldirs) "$$docdir"; \
499
 
          fi; \
500
489
          echo "$(INSTALL_DATA) $$d$$doc $(DESTDIR)$(HELP_DIR)/$(DOC_MODULE)/$$doc"; \
501
490
          $(INSTALL_DATA) $$d$$doc $(DESTDIR)$(HELP_DIR)/$(DOC_MODULE)/$$doc; \
502
491
        done
565
554
 
566
555
uninstall-doc-omf:
567
556
        @list='$(_DOC_OMF_ALL)'; for omf in $$list; do \
568
 
          if test "x$(_ENABLE_SK)" = "xtrue"; then \
 
557
          if test "x$(_ENABLE_SK)" == "xtrue"; then \
569
558
            echo "scrollkeeper-uninstall -p $(_sklocalstatedir) $(DESTDIR)$(OMF_DIR)/$(DOC_MODULE)/$$omf"; \
570
559
            scrollkeeper-uninstall -p "$(_sklocalstatedir)" "$(DESTDIR)$(OMF_DIR)/$(DOC_MODULE)/$$omf"; \
571
560
          fi; \