1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
|
# cmake/modules/docbook.cmake
#
# Copyright (C) 2006 Andrew Ross
# Copyright (C) 2006 Alan W. Irwin
#
# This file is part of PLplot.
#
# PLplot is free software; you can redistribute it and/or modify
# it under the terms of the GNU Library General Public License as published
# by the Free Software Foundation; version 2 of the License.
#
# PLplot is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public License
# along with the file PLplot; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# Configuration for the building of DocBook documentation
option(BUILD_DOC "Enable build of DocBook documentation" OFF)
if(NOT (PERL_FOUND AND CMAKE_SYSTEM_NAME STREQUAL "Linux"))
set(
BUILD_DOC OFF CACHE INTERNAL
"Enable build of DocBook documentation"
)
endif(NOT (PERL_FOUND AND CMAKE_SYSTEM_NAME STREQUAL "Linux"))
option(PREBUILT_DOC "Assume documentation is already built and present in doc/docbooks/src, ready to be installed. This option is useful for package maintainers" OFF)
if(BUILD_DOC AND PREBUILT_DOC)
message(FATAL_ERROR "Options BUILD_DOC and PREBUILT_DOC are logically exclusive and must not be set simultaneously. Giving up.")
endif(BUILD_DOC AND PREBUILT_DOC)
# Website installation.
set(WWW_USER "" CACHE STRING "User name at WWW host")
set(WWW_GROUP "plplot" CACHE STRING "Group name at WWW host")
set(WWW_HOST "shell1.sourceforge.net" CACHE STRING "Host name at WWW host")
set(
WWW_DIR "/home/groups/p/pl/plplot/htdocs/docbook-manual"
CACHE STRING "Dir name at WWW host"
)
set(RSH "ssh" CACHE STRING "Remote shell command")
set(RCP "scp" CACHE STRING "Remote copy command")
# Website of the PLplot project
set(PLPLOT_WEBSITE "plplot.sourceforge.net" CACHE STRING "PLplot web site")
# Required for validation regardless of whether BUILD_DOC is set
set(XML_DECL "/usr/share/xml/declaration/xml.dcl" CACHE STRING "Full path to xml.dcl file.")
set(DOCBOOK_DTD_PUBID "-//OASIS//DTD DocBook XML V4.5//EN")
set(DOCBOOK_DTD_SYSID "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd")
find_program(ONSGMLS onsgmls)
find_program(ENV_FOR_ONSGMLS env)
if(ONSGMLS AND ENV_FOR_ONSGMLS)
message(STATUS "validate target will be available to check for syntax issues in the PLplot DocBook documentation using ${ENV_FOR_ONSGMLS} SP_CHARSET_FIXED=yes SP_ENCODING=xml ${ONSGMLS}.")
# Note, these environment variables have to be set to use onsgml with
# UTF-8 documents, see https://bugzilla.redhat.com/show_bug.cgi?id=66179
set(ONSGMLS ${ENV_FOR_ONSGMLS} SP_CHARSET_FIXED=yes SP_ENCODING=xml ${ONSGMLS})
else(ONSGMLS AND ENV_FOR_ONSGMLS)
message(STATUS "WARNING: validate target will not be available to check for syntax issues in the PLplot DocBook documentation because onsgmls (or env) was not found.")
set(ONSGMLS NOTFOUND)
endif(ONSGMLS AND ENV_FOR_ONSGMLS)
# This option is used for the BUILD_DOC case below and elsewhere and also
# for the PREBUILT_DOC case elsewhere (when stylesheet.css is configured).
# option(DOCBOOK_XML_BACKEND "Use DocBook XML/XSLT backend tools to generate our documentation from DocBook source" ON)
# N.B., DOCBOOK_XML_BACKEND ON is mandatory now rather than an option
# which effectively disables the old SGML/DSSSL backend tools that
# were deprecated but still available for 5.9.10 and which were the
# default for releases prior to 5.9.10.
set(DOCBOOK_XML_BACKEND ON CACHE BOOL "" FORCE)
# Check for required programs and perl libraries.
if(BUILD_DOC)
# The info backend is implemented only with perl and XML/XSLT regardless of
# DOCBOOK_XML_BACKEND.
find_program(DB2X_TEXIXML db2x_texixml)
if(NOT DB2X_TEXIXML)
message(STATUS "WARNING: db2x_texixml not found")
endif(NOT DB2X_TEXIXML)
find_program(DB2X_XSLTPROC db2x_xsltproc)
if(NOT DB2X_XSLTPROC)
message(STATUS "WARNING: db2x_xsltproc not found")
endif(NOT DB2X_XSLTPROC)
find_program(MAKEINFO makeinfo)
if(NOT MAKEINFO)
message(STATUS "WARNING: makeinfo not found")
endif(NOT MAKEINFO)
if(PERL_FOUND AND DB2X_TEXIXML AND DB2X_XSLTPROC AND MAKEINFO)
set(BUILD_INFO ON)
else(PERL_FOUND AND DB2X_TEXIXML AND DB2X_XSLTPROC AND MAKEINFO)
set(BUILD_INFO OFF)
message(STATUS
"WARNING: Not building info documentation - "
"required programs are missing"
)
endif(PERL_FOUND AND DB2X_TEXIXML AND DB2X_XSLTPROC AND MAKEINFO)
# The man backend is implemented only with perl and XML regardless of
# DOCBOOK_XML_BACKEND.
if(PERL_FOUND AND PERL_XML_PARSER AND PERL_XML_DOM)
set(BUILD_MAN ON)
else(PERL_FOUND AND PERL_XML_PARSER AND PERL_XML_DOM)
set(BUILD_MAN OFF)
message(STATUS
"WARNING: Not building man documentation - "
"required programs are missing"
)
endif(PERL_FOUND AND PERL_XML_PARSER AND PERL_XML_DOM)
if(DOCBOOK_XML_BACKEND)
# For this case never build dvi form of documentation.
set(BUILD_DVI OFF CACHE BOOL "Build dvi form of documentation" FORCE)
# For this case use xmlto for just html
# (DOCBOOK_DBLATEX_BACKEND=ON) or both html and print
# (DOCBOOK_DBLATEX_BACKEND=OFF). The xml tool does its own
# warnings at run time when components are missing so don't bother
# with looking for missing components at cmake time.
find_program(XMLTO xmlto)
if(NOT XMLTO)
message(STATUS "WARNING: xmlto not found")
endif(NOT XMLTO)
if(XMLTO)
set(BUILD_HTML ON)
else(XMLTO)
message(STATUS
"WARNING: xmlto script is not installed so not building html documentation"
)
set(BUILD_HTML OFF)
endif(XMLTO)
# Deal with configuration of build of print documentation.
# For this case never build dvi form of print documentation.
set(BUILD_DVI OFF CACHE BOOL "Build dvi form of documentation" FORCE)
find_program(GZIP gzip)
if(GZIP)
set(BUILD_PRINT ON)
else(GZIP)
message(STATUS "WARNING: gzip not found so not building print documentation")
set(BUILD_PRINT OFF)
endif(GZIP)
if(BUILD_PRINT)
option(DOCBOOK_DBLATEX_BACKEND "Use \"dblatex --backend=xetex\" XML/XSLT backend tool to generate our print documentation from DocBook source" ON)
if(DOCBOOK_DBLATEX_BACKEND)
find_program(DBLATEX dblatex)
if(NOT DBLATEX)
message(STATUS "WARNING: dblatex not found so not building print documentation")
set(BUILD_PRINT OFF)
endif(NOT DBLATEX)
if(BUILD_PRINT)
# Note that the "dblatex --backend=xetex" command must have
# some sort of xetex or xelatex python dependency. I
# haven't tracked down those details, but it is likely that
# the xelatex is called as part of that processing (or if
# not some dependency of xelatex is called) so if xelatex is
# present it is likely that "dblatex --backend=xetex" will
# work.
find_program(XELATEX xelatex)
if(NOT XELATEX)
message(STATUS "WARNING: xelatex not found so not building print documentation")
set(BUILD_PRINT OFF)
endif(NOT XELATEX)
endif(BUILD_PRINT)
if(BUILD_PRINT)
# Need pdf2ps to provide PostScript from the PDF results.
find_program(PDF2PS pdf2ps)
if(NOT PDF2PS)
message(STATUS "WARNING: pdf2ps not found so not building print documentation")
set(BUILD_PRINT OFF)
endif(NOT PDF2PS)
endif(BUILD_PRINT)
endif(DOCBOOK_DBLATEX_BACKEND)
endif(BUILD_PRINT)
else(DOCBOOK_XML_BACKEND)
# Deprecated SGML/DSSSL backends to generate html and print documentation.
# These JADELOG and EC_PDFTEX variables used during course of
# SGML/DSSSL builds
set(JADELOG "jadeout.log")
# EC_PDFTEX needed to configure pdftex.map which is used in general for
# the documentation build. The specific location in
# /usr/share/texmf/dvips/base is used in Debian sarge and may cover other
# distributions which still use tetex.
find_file(EC_ENC_NAME EC.enc /usr/share/texmf/dvips/base)
if(EC_ENC_NAME)
# Value appropriate for tetex
set(EC_PDFTEX EC)
else(EC_ENC_NAME)
# Value appropriate for texlive
set(EC_PDFTEX ec)
endif(EC_ENC_NAME)
# Find programmes required for SGML/DSSSL builds.
find_program(OPENJADE openjade)
if(NOT OPENJADE)
message(STATUS "WARNING: openjade not found")
endif(NOT OPENJADE)
find_program(JADETEX jadetex)
if(NOT JADETEX)
message(STATUS "WARNING: jadetex not found")
endif(NOT JADETEX)
find_program(PDFJADETEX pdfjadetex)
if(NOT PDFJADETEX)
message(STATUS "WARNING: pdfjadetex not found")
endif(NOT PDFJADETEX)
find_program(DVIPS dvips)
if(NOT DVIPS)
message(STATUS "WARNING: dvips not found")
endif(NOT DVIPS)
find_program(GZIP gzip)
if(NOT GZIP)
message(STATUS "WARNING: gzip not found")
endif(NOT GZIP)
# These DSSSL stylesheets needed for SGML/DSSSL builds.
set(DSSSL_DTD_PUBID "-//James Clark//DTD DSSSL Style Sheet//EN")
set(DB_SS_HTML_PUBID "-//Norman Walsh//DOCUMENT DocBook HTML Stylesheet//EN")
set(DB_SS_PRINT_PUBID "-//Norman Walsh//DOCUMENT DocBook Print Stylesheet//EN")
# Check public identifiers
include(CheckDTD)
CheckDTD(HAVE_DSSSL_DTD
"DSSSL Style Sheet DTD"
""
""
""
"[<!ELEMENT book - O (#PCDATA)>]"
"sgml"
"\"${DSSSL_DTD_PUBID}\""
"style-sheet.dtd"
"jade"
)
CheckDTD(HAVE_HTML_SS
"DocBook HTML Stylesheet"
"[<!ENTITY dbstyle PUBLIC \"${DB_SS_HTML_PUBID}\" CDATA DSSSL>]"
"use=\"docbook\""
"<external-specification id=\"docbook\" document=\"dbstyle\">"
"[<!ELEMENT book - O (#PCDATA)>]"
"sgml"
"\"${DB_SS_HTML_PUBID}\""
"html/docbook.dsl"
"docbook-stylesheets"
)
CheckDTD(HAVE_PRINT_SS
"DocBook Print Stylesheet"
"[<!ENTITY dbstyle PUBLIC \"${DB_SS_PRINT_PUBID}\" CDATA DSSSL>]"
"use=\"docbook\""
"<external-specification id=\"docbook\" document=\"dbstyle\">"
"[<!ELEMENT book - O (#PCDATA)>]"
"tex"
"\"${DB_SS_PRINT_PUBID}\""
"print/docbook.dsl"
"docbook-stylesheets"
)
CheckDTD(HAVE_DB_DTD
"DocBook DTD"
""
""
""
"PUBLIC \"${DOCBOOK_DTD_PUBID}\""
"sgml"
"\"${DOCBOOK_DTD_PUBID}\""
"docbookx.dtd"
"docbook-xml (DTD version 3.1.3)"
)
if(OPENJADE)
if(HAVE_DSSSL_DTD AND HAVE_HTML_SS AND HAVE_DB_DTD)
set(BUILD_HTML ON)
else(HAVE_DSSSL_DTD AND HAVE_HTML_SS AND HAVE_DB_DTD)
set(BUILD_HTML OFF)
message(STATUS
"WARNING: Not building html documentation - "
"dtd files / style sheets are missing"
)
endif(HAVE_DSSSL_DTD AND HAVE_HTML_SS AND HAVE_DB_DTD)
else(OPENJADE)
set(BUILD_HTML OFF)
message(STATUS
"WARNING: Not building html documentation - "
"required programs are missing"
)
endif(OPENJADE)
if(OPENJADE AND JADETEX AND PDFJADETEX AND DVIPS AND GZIP)
if(HAVE_DSSSL_DTD AND HAVE_PRINT_SS AND HAVE_DB_DTD)
set(BUILD_PRINT ON)
set(BUILD_DVI ON CACHE BOOL "Build dvi form of documentation" FORCE)
else(HAVE_DSSSL_DTD AND HAVE_PRINT_SS AND HAVE_DB_DTD)
set(BUILD_PRINT OFF)
message(STATUS
"WARNING: Not building print documentation - "
"dtd files / style sheets are missing"
)
endif(HAVE_DSSSL_DTD AND HAVE_PRINT_SS AND HAVE_DB_DTD)
else(OPENJADE AND JADETEX AND PDFJADETEX AND DVIPS AND GZIP)
set(BUILD_PRINT OFF)
message(STATUS
"WARNING: Not building print documentation - "
"required programs are missing"
)
endif(OPENJADE AND JADETEX AND PDFJADETEX AND DVIPS AND GZIP)
endif(DOCBOOK_XML_BACKEND)
endif(BUILD_DOC)
# The "BASE" variables needed for www/documentation.php.in configuration and
# in doc/docbook/src/CMakeLists.txt.
# The "MANIFEST" variables needed in top-level CMakeLists.txt and
# in doc/docbook/src/CMakeLists.txt.
if(BUILD_DOC OR PREBUILT_DOC)
set(BASE "${PACKAGE}-${PLPLOT_VERSION}")
set(INFO_MANIFEST "INFO-MANIFEST")
set(BASE_INFO "${PACKAGE}-info-${PLPLOT_VERSION}")
set(MAN_MANIFEST "MAN-MANIFEST")
set(BASE_MAN "${PACKAGE}-man-${PLPLOT_VERSION}")
set(HTML_MANIFEST "HTML-MANIFEST")
set(BASE_HTML "${PACKAGE}-html-${PLPLOT_VERSION}")
endif(BUILD_DOC OR PREBUILT_DOC)
|