~ubuntu-branches/ubuntu/hardy/gnome-system-tools/hardy-updates

« back to all changes in this revision

Viewing changes to doc/services/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Aron Sisak
  • Date: 2007-07-19 12:56:26 UTC
  • mfrom: (1.1.21 upstream)
  • Revision ID: james.westby@ubuntu.com-20070719125626-ohk1pfxumjf3lge2
Tags: 2.19.0-0ubuntu1
* New upstream release:
  - Common
    - fix gtk-update-icon-cache for uninstall-hook (David Farning)
  - Network
    - Fix implicit conversion to pointer
    - Add WPA/WPA2 PSK descriptions
  - Services
    - Fix implicit conversion to pointer
    - Fix some compiler warnings
  - Users
    - Fix a compiler warning
* Translations
  - be@latin, ca, dz, en_GB, es, et, eu, it, nb, pt_BR, si, th, vi, zh_CN
* debian/control.in
  - removed libart build dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
286
286
        $(DOC_LINGUAS))
287
287
 
288
288
_DOC_ABS_SRCDIR = @abs_srcdir@
 
289
@ENABLE_SK_TRUE@_ENABLE_SK = true
289
290
 
290
291
################################################################################
291
292
db2omf_args = \
298
299
        --stringparam db2omf.omf_dir "$(OMF_DIR)"                               \
299
300
        --stringparam db2omf.help_dir "$(HELP_DIR)"                             \
300
301
        --stringparam db2omf.omf_in "$(_DOC_OMF_IN)"                            \
301
 
        --stringparam db2omf.scrollkeeper_cl "$(_skcontentslist)"               \
 
302
        $(if $(_ENABLE_SK),                                                     \
 
303
          --stringparam db2omf.scrollkeeper_cl "$(_skcontentslist)")            \
302
304
        $(_db2omf) $(2)
303
305
 
304
306
_DOC_OMF_IN = $(if $(DOC_MODULE),$(wildcard $(_DOC_ABS_SRCDIR)/$(DOC_MODULE).omf.in))
374
376
        $(_DOC_C_HTML) $(_DOC_LC_HTML))
375
377
 
376
378
_DOC_HTML_TOPS = $(foreach lc,C $(_DOC_REAL_LINGUAS),$(lc)/$(DOC_MODULE).xhtml)
377
 
@ENABLE_SK_FALSE@_ENABLE_SK = false
378
 
 
379
 
################################################################################
380
 
@ENABLE_SK_TRUE@_ENABLE_SK = true
381
379
_clean_omf = $(if $(_DOC_OMF_IN),clean-doc-omf)
382
380
_clean_dsk = $(if $(_DOC_DSK_IN),clean-doc-dsk)
383
381
_clean_lc = $(if $(_DOC_REAL_LINGUAS),clean-doc-lc)
787
785
_chunks  ?= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/chunks.xsl
788
786
_credits ?= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/credits.xsl
789
787
_ids ?= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/ids.xsl
790
 
 
791
 
_skpkgdatadir ?= `scrollkeeper-config --pkgdatadir`
792
 
_sklocalstatedir ?= `scrollkeeper-config --pkglocalstatedir`
793
 
_skcontentslist ?= $(_skpkgdatadir)/Templates/C/scrollkeeper_cl.xml
 
788
@ENABLE_SK_TRUE@_skpkgdatadir ?= `scrollkeeper-config --pkgdatadir`
 
789
@ENABLE_SK_TRUE@_sklocalstatedir ?= `scrollkeeper-config --pkglocalstatedir`
 
790
@ENABLE_SK_TRUE@_skcontentslist ?= $(_skpkgdatadir)/Templates/C/scrollkeeper_cl.xml
794
791
 
795
792
$(_DOC_OMF_DB) : $(_DOC_OMF_IN)
796
793
$(_DOC_OMF_DB) : $(DOC_MODULE)-%.omf : %/$(DOC_MODULE).xml
797
 
        @test -f "$(_skcontentslist)" || {                                      \
 
794
        @test "x$(_ENABLE_SK)" != "xtrue" -o -f "$(_skcontentslist)" || {       \
798
795
          echo "The file '$(_skcontentslist)' does not exist." >&2;             \
799
796
          echo "Please check your ScrollKeeper installation." >&2;              \
800
797
          exit 1; }
802
799
 
803
800
$(_DOC_OMF_HTML) : $(_DOC_OMF_IN)
804
801
$(_DOC_OMF_HTML) : $(DOC_MODULE)-html-%.omf : %/$(DOC_MODULE).xml
805
 
        @test -f "$(_skcontentslist)" || {                                      \
806
 
          echo "The file '$(_skcontentslist)' does not exist" >&2;              \
807
 
          echo "Please check your ScrollKeeper installation." >&2;              \
808
 
          exit 1; }
 
802
@ENABLE_SK_TRUE@        @test "x$(_ENABLE_SK)" != "xtrue" -o -f "$(_skcontentslist)" || {       \
 
803
@ENABLE_SK_TRUE@          echo "The file '$(_skcontentslist)' does not exist" >&2;              \
 
804
@ENABLE_SK_TRUE@          echo "Please check your ScrollKeeper installation." >&2;              \
 
805
@ENABLE_SK_TRUE@          exit 1; }
809
806
        xsltproc -o $@ $(call db2omf_args,$@,$<,'xhtml') || { rm -f "$@"; exit 1; }
810
807
 
811
808
.PHONY: omf
860
857
$(_DOC_HTML_TOPS): $(_DOC_C_DOCS) $(_DOC_LC_DOCS)
861
858
        xsltproc -o $@ --xinclude --param db.chunk.chunk_top "false()" --stringparam db.chunk.basename "$(DOC_MODULE)" --stringparam db.chunk.extension ".xhtml" $(_db2html) $(patsubst %.xhtml,%.xml,$@)
862
859
 
 
860
################################################################################
 
861
 
863
862
all:                                                    \
864
863
        $(_DOC_C_DOCS)          $(_DOC_LC_DOCS)         \
865
864
        $(_DOC_OMF_ALL)         $(_DOC_DSK_ALL)         \