# $Id: Config.kmk 77794 2019-03-19 15:55:27Z vboxsync $ ## @file # kBuild Configuration file for the manual. # # # Copyright (C) 2010-2019 Oracle Corporation # # This file is part of VirtualBox Open Source Edition (OSE), as # available from http://www.virtualbox.org. This file is free software; # you can redistribute it and/or modify it under the terms of the GNU # General Public License (GPL) as published by the Free Software # Foundation, in version 2 as it comes in the "COPYING" file of the # VirtualBox OSE distribution. VirtualBox OSE is distributed in the # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. # ifndef VBOX_DOC_MANUAL_CONFIG_KMK_INCLUDED VBOX_DOC_MANUAL_CONFIG_KMK_INCLUDED = 1 # Include the top-level configure file. ifndef VBOX_ROOT_CONFIG_KMK_INCLUDED include $(PATH_ROOT)/Config.kmk endif # # Globals. # # Source location. VBOX_PATH_MANUAL_SRC := $(PATH_ROOT)/doc/manual # Output location. VBOX_PATH_MANUAL_OUTBASE := $(PATH_OBJ)/manual ## List of refentry files (manpages). VBOX_MANUAL_XML_REFENTRY_FILES := \ man_VBoxManage-snapshot.xml \ man_VBoxManage-mediumio.xml \ man_VBoxManage-debugvm.xml \ man_VBoxManage-extpack.xml \ man_VBoxManage-unattended.xml \ man_VBoxManage-cloudprofile.xml ## List of user manual XML files. VBOX_MANUAL_XML_FILES = \ UserManual.xml \ user_Preface.xml \ user_Introduction.xml \ user_Installation.xml \ user_BasicConcepts.xml \ user_GuestAdditions.xml \ user_Storage.xml \ user_Networking.xml \ user_Frontends.xml \ user_VBoxManage.xml \ user_AdvancedTopics.xml \ user_Technical.xml \ user_VirtualBoxAPI.xml \ user_Troubleshooting.xml \ user_Security.xml \ user_KnownIssues.xml \ user_ChangeLog.xml \ user_ThirdParty.xml \ user_PrivacyPolicy.xml \ user_Glossary.xml \ oracle-accessibility-en.xml \ oracle-support-en.xml ## List of user manual XML files common for all languages. VBOX_MANUAL_XML_FILES_COMMON = \ $(VBOX_PATH_MANUAL_SRC)/user_ChangeLogImpl.xml # Tool locations. ifndef VBOX_OSE # use docbook from our tools directory VBOX_PATH_DOCBOOK ?= $(PATH_DEVTOOLS)/common/DocBook/v1.69.1 VBOX_PATH_DOCBOOK_DTD ?= $(PATH_DEVTOOLS)/common/docbook-xml/v4.5 else # use docbook of the build host VBOX_PATH_DOCBOOK ?= /usr/share/xml/docbook/stylesheet/docbook-xsl VBOX_PATH_DOCBOOK_DTD ?= /usr/share/xml/docbook/schema/dtd/4.5 endif VBOX_XML_CATALOG ?= $(VBOX_PATH_MANUAL_OUTBASE)/catalog VBOX_XML_CATALOG_DOCBOOK ?= $(VBOX_PATH_MANUAL_OUTBASE)/docbook VBOX_XML_CATALOG_MANUAL ?= $(VBOX_PATH_MANUAL_OUTBASE)/manual VBOX_XML_ENTITIES ?= $(VBOX_PATH_MANUAL_OUTBASE)/all-entities.ent # xsltproc with the catalog trick if applicable (set XML_DEBUG_CATALOG to # non-zero value to debug file/uri resolution through the catalogs, using # one of them is enough, they show the same information). ifdef VBOX_XML_CATALOG VBOX_XSLTPROC_WITH_CAT = $(REDIRECT) -E "XML_CATALOG_FILES=$(VBOX_XML_CATALOG)" -E "XML_DEBUG_CATALOG=" $1 -- \ $(VBOX_XSLTPROC) --nonet --xinclude $(VBOX_XSLTPROC_OPTS) --path "$(VBOX_PATH_MANUAL_OUTBASE)" VBOX_XMLLINT_WITH_CAT = $(REDIRECT) -E "XML_CATALOG_FILES=$(VBOX_XML_CATALOG)" -E "XML_DEBUG_CATALOG=" -- \ $(VBOX_XMLLINT) --nonet --xinclude --noout $(VBOX_XMLLINT_OPTS) --path "$(VBOX_PATH_MANUAL_OUTBASE)" else VBOX_XSLTPROC_WITH_CAT = $(if $(1), $(REDIRECT) $1 --,) $(VBOX_XSLTPROC) --nonet --xinclude $(VBOX_XSLTPROC_OPTS) \ --path "$(VBOX_PATH_MANUAL_OUTBASE)" VBOX_XMLLINT_WITH_CAT = $(VBOX_XMLLINT) --nonet --xinclude --noout $(VBOX_XMLLINT_OPTS) --path "$(VBOX_PATH_MANUAL_OUTBASE)" endif # Location of the generate stylesheet for transformating xref elements into # name user manual sections. VBOX_XML_XREF_TO_TEXT = $(VBOX_PATH_MANUAL_OUTBASE)/xref-to-text.xsl ## # Emits rules for preprocessing refentry sources (applying remarks element), # and for producing the actual man pages. # # $(evalcall2 def_vbox_refentry_to_manpage) # @param 1 The output directory. # @param 2 The XML file name (no path). # @param 3 The XML file with full path. # @param 4 Non-empty if xrefs to replace. define def_vbox_refentry_preprocess_for_manpage $(1)/$(2): \ $(3) \ $$(VBOX_PATH_MANUAL_SRC)/docbook-refentry-to-manpage-preprocessing.xsl \ $(if $(4),$$(VBOX_XML_XREF_TO_TEXT),) \ $$(VBOX_XML_CATALOG) $$(VBOX_XML_CATALOG_DOCBOOK) $$(VBOX_XML_CATALOG_MANUAL) \ $$(VBOX_VERSION_STAMP) | $$$$(dir $$$$@) $$(call MSG_TOOL,xsltproc $$(notdir $$(firstword $$(filter %.xsl,$$^))),,$$(firstword $$(filter %.xml,$$^)),$$@) $$(QUIET)$$(RM) -f "$$@" $$(QUIET)$$(call VBOX_XSLTPROC_WITH_CAT) --output $$@ \ "$$(VBOX_PATH_MANUAL_SRC)/docbook-refentry-to-manpage-preprocessing.xsl" $$< ifneq ($(4),) $$(QUIET)$$(call VBOX_XSLTPROC_WITH_CAT) --output $$@.tmp $$(VBOX_XML_XREF_TO_TEXT) $$@ $$(QUIET)$$(MV) -f -- "$$@.tmp" "$$@" endif if defined(VBOX_HAVE_XMLLINT) && "$(USER)" == "bird" # Effing stuff happends on build servers, probably kmk related... $$(VBOX_XMLLINT_WITH_CAT) --dtdvalid $$(VBOX_PATH_DOCBOOK_DTD)/docbookx.dtd $$@ endif endef ## # Generate a single header file containing everything (no C file). # # @param 1 Destination file. # @param 2 Full source file path. # @param 3 Help infix. define def_vbox_single_refentry_to_h $(1).ts +| $(1): \ $$(VBOX_DOCBOOK_REFENTRY_TO_C_HELP) \ $$(VBOX_DOCBOOK_REFENTRY_TO_H_HELP) \ $(2) \ $$(VBOX_XML_CATALOG) $$(VBOX_XML_CATALOG_DOCBOOK) $$(VBOX_XML_CATALOG_MANUAL) $(MAKEFILE) | $$$$(dir $$$$@) $$(call MSG_TOOL,xsltproc $$(notdir $$(firstword $$(filter %.xsl,$$^))),,$$(filter %.xml,$$^),$$(patsubst %.ts,%,$$@)) $$(QUIET)$$(APPEND) -tn "$$@" \ '/* Autogenerated by $$(notdir $$(filter %.xsl,$$^)), do not edit! */' \ '' \ '#include ' \ '' \ 'typedef enum HELP_CMD_$(3)' \ '{' \ ' HELP_CMD_INVALID = 0,' $$(QUIET)$$(call VBOX_XSLTPROC_WITH_CAT, -a+to "$$@") \ --stringparam 'g_sMode' 'cmd' $$(VBOX_DOCBOOK_REFENTRY_TO_H_HELP) $(2) $$(QUIET)$$(APPEND) -n "$$@" \ ' HELP_CMD_END' \ '} HELP_CMD_VBOXMANAGE;' \ '' $$(NLTAB)$$(QUIET)$$(call VBOX_XSLTPROC_WITH_CAT, -a+to "$$@") \ --stringparam 'g_sMode' 'subcmd' $$(VBOX_DOCBOOK_REFENTRY_TO_H_HELP) $(2) $$(QUIET)$$(APPEND) -n "$$@" \ '' $$(NLTAB)$$(QUIET)$$(call VBOX_XSLTPROC_WITH_CAT, -a+to "$$@") $$(VBOX_DOCBOOK_REFENTRY_TO_C_HELP) $(2) $$(QUIET)$$(APPEND) -n "$$@" \ '' \ '/* end of file */' $$(QUIET)$$(CP) --changed -- "$$@" "$$(patsubst %.ts,%,$$@)" endef # # Make sure we've got a rule to make the output directory. # BLDDIRS += $(VBOX_PATH_MANUAL_OUTBASE) ifdef VBOX_XML_CATALOG # Trickery for making sure that the file:/// URLs end up with exactly 3 # slashes, both on Unixy OSes (where the absolute path contributes one more, # and some very picky xsltproc variants are floating around which do not work # quite correctly with file:////, doing incorrect filename transformations) # and on Windows (where the absolute path starts with a drive letter). VBOX_FILE_URL_MAYBE_SLASH = $(if $(eq $(KBUILD_HOST),win),/,) # # To avoid network I/O for fetching DTDs, we generate catalogs mapping the public # entity IDs to local files. (Obviously, only done when we have local files.) # # Create a catalog file for xsltproc that points to docbook catalog. $(VBOX_XML_CATALOG): $(VBOX_PATH_MANUAL_SRC)/Config.kmk | $$(dir $$@) $(call MSG_L1,Creating catalog $@) $(QUIET)$(APPEND) -tn "$@" \ '' \ '' \ '' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ '' # Create a docbook catalog file for xsltproc that points to the local docbook files. $(VBOX_XML_CATALOG_DOCBOOK): $(VBOX_PATH_MANUAL_SRC)/Config.kmk | $$(dir $$@) $(call MSG_L1,Creating catalog $@) $(QUIET)$(APPEND) -tn "$@" \ '' \ '' \ '' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ '' # Create a docbook catalog file for xsltproc that points to the local manual files in non-default locations $(VBOX_XML_CATALOG_MANUAL): $(VBOX_PATH_MANUAL_SRC)/Config.kmk | $$(dir $$@) $(call MSG_L1,Creating catalog $@) $(QUIET)$(APPEND) -tn "$@" \ '' \ '' \ '' \ ' ' \ ' ' \ ' ' \ ' ' \ $(foreach x,user_VBoxManage_CommandsOverview.xml user_isomakercmd-man.xml $(addprefix user_,$(VBOX_MANUAL_XML_REFENTRY_FILES))\ ,' ') \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ ' ' \ '' endif # VBOX_XML_CATALOG ifdef VBOX_XML_ENTITIES $(VBOX_XML_ENTITIES): $(VBOX_PATH_MANUAL_SRC)/Config.kmk | $$(dir $$@) $(call MSG_L1,Creating entities $@) $(QUIET)$(APPEND) -tn "$@" \ '' \ '' \ '' \ '' \ '' \ '' \ '' \ '' \ '' \ '' \ '' \ '' \ 'Oracle VM VirtualBox'\'' >' \ '' \ '' \ '' \ '' endif # VBOX_XML_ENTITIES ## Produce stylesheet for translating cross references (xref) to user manual # chapters and sections in the man pages and --help output. # # Note! This requires processing UserManual.xml as a single document in order # to get the correct chapter and section numbering, so we use a catalog # file to replace the generated XML documents it includes with a dummy # one. This reduces the dependencies and recipies we require to build # VBoxManage and the RTIsoMaker (w/ derivatives). $(VBOX_XML_XREF_TO_TEXT) + $(VBOX_XML_XREF_TO_TEXT).cat: \ $(VBOX_PATH_MANUAL_SRC)/docbook-refentry-link-replacement-xsl-gen.xsl \ $(addprefix $(VBOX_PATH_MANUAL_SRC)/en_US/,$(VBOX_MANUAL_XML_FILES)) \ $(VBOX_MANUAL_XML_FILES_COMMON) \ $(VBOX_XML_CATALOG) $(VBOX_XML_CATALOG_DOCBOOK) $(VBOX_XML_CATALOG_MANUAL) $(VBOX_XML_ENTITIES) \ | $$(dir $$@) $(call MSG_L1,Creating stylesheet $@) $(QUIET)$(APPEND) -nt "$(VBOX_XML_XREF_TO_TEXT).cat" \ '' \ '' \ '' \ $(foreach x,user_VBoxManage_CommandsOverview.xml user_isomakercmd-man.xml $(addprefix user_,$(VBOX_MANUAL_XML_REFENTRY_FILES))\ ,' ') \ ' ' \ '' $(QUIET)$(call VBOX_XSLTPROC_WITH_CAT, -E "XML_CATALOG_FILES=$(VBOX_XML_XREF_TO_TEXT).cat") \ --output "$@" "$<" $(filter %UserManual.xml,$^) # # Generate rules for editing the refentry to C/H style sheets. # VBOX_DOCBOOK_REFENTRY_TO_C_HELP = $(VBOX_PATH_MANUAL_SRC)/docbook-refentry-to-C-help.xsl VBOX_DOCBOOK_REFENTRY_TO_H_HELP = $(VBOX_PATH_MANUAL_SRC)/docbook-refentry-to-H-help.xsl # # Manual dependency. # $(VBOX_PATH_MANUAL_OUTBASE)/docbook-refentry-to-C-help.xsl: $(VBOX_PATH_MANUAL_SRC)/common-formatcfg.xsl endif # !defined(VBOX_DOC_MANUAL_CONFIG_KMK_INCLUDED)