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 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
|
# Xiphos build script
#
# Copyright (C) 2018 Xiphos Development Team
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
#
# help files
#
# TODO:
# - switch from itstool to portable gettext utilities (msgfmt and xgettext)
if (HELP)
message (STATUS "Configuring Help files")
# list of pages
list (APPEND help_pages
index.page
legal.xml
xiphos-01-introduction.page
xiphos-02-shortcut-keys.page
xiphos-10-start.page
xiphos-11-interface.page
xiphos-20-modules-introduction.page
xiphos-21-modules-configuration.page
xiphos-22-modules-install.page
xiphos-23-modules-maintenance.page
xiphos-24-modules-third-party.page
xiphos-30-search.page
xiphos-31-advanced-search.page
xiphos-32-search-syntax.page
xiphos-33-original-language.page
xiphos-40-personal-commentary.page
xiphos-41-studypad.page
xiphos-42-journals.page
xiphos-50-preferences-general-settings.page
xiphos-51-preferences-biblesync.page
xiphos-52-preferences-fonts-colors.page
xiphos-53-preferences-modules.page
xiphos-60-online-help.page
xiphos-90-credits.page
)
# list of figures
list (APPEND help_figures
figures/first_start.png
figures/interface_biblepane-options.png
figures/interface_biblepane.png
figures/interface_commentarypane.png
figures/interface_dictionary.png
figures/interface_menubar.png
figures/interface_menubar-view.png
figures/interface_parallel.png
figures/interface_parallel-separate.png
figures/interface.png
figures/interface_searchpane.png
figures/interface_shortcut.png
figures/interface_sidepane.png
figures/interface_toolbar.png
figures/interface_viewer.png
figures/journal.png
figures/module.png
figures/personal.png
figures/preferences_fonts-color.png
figures/preferences_fonts-misc.png
figures/preferences_general-misc.png
figures/preferences_general-biblesync.png
figures/preferences_modules-misc.png
figures/preferences_modules-parallel.png
figures/search_search.png
figures/studypad.png
figures/sword3.png
figures/sword_config.png
figures/sword_install.png
figures/sword_remove.png
figures/sword_sources.png
figures/xiphos-icon.png
figures/xiphos-trail-icon.png
)
# we use 'mhelp' (mallard help) as 'help' is a CMake reserved keyword
add_custom_target(mhelp)
# read languages from LINGUAS
file (READ ${CMAKE_CURRENT_SOURCE_DIR}/HELP_LINGUAS linguas)
# transform languages string into a CMake regular list
string (REGEX MATCHALL "[a-zA-Z_]+" help_locales "${linguas}")
# build a list of all languages by adding 'C' to the list
list (APPEND help_all_langs "C" ${help_locales})
# build all Mallard files
# 1. copy C files into build_dir
file (COPY "C" DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
# add timestamp
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/C/pages.timestamp "EMPTY")
# add target
add_custom_target(help-C-pages
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/C/pages.timestamp
)
add_dependencies(mhelp help-C-pages)
# 2. create translated pages for all other languages than C
foreach (lang ${help_locales})
# create a .PO file if none exists
if(NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/${lang}.po")
message(STATUS "Creating ${lang}/${lang}.po from HELP_LINGUAS.")
file(
MAKE_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/")
file(
COPY "${CMAKE_CURRENT_SOURCE_DIR}/xiphos.pot"
DESTINATION "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/")
file(
RENAME "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/xiphos.pot"
"${CMAKE_CURRENT_SOURCE_DIR}/${lang}/${lang}.po")
endif(NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${lang}/${lang}.po")
# copy <lang> files into build_dir
file (COPY ${lang} DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
# create translated pages for <lang>
set(pofile "${CMAKE_CURRENT_BINARY_DIR}/${lang}/${lang}.po")
set(mofile "${CMAKE_CURRENT_BINARY_DIR}/${lang}/${lang}.mo")
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${lang}/pages.timestamp
# translate pages
COMMAND ${GETTEXT_MSGFMT_EXECUTABLE} -o "${mofile}" "${pofile}"
COMMAND ${CMAKE_COMMAND} -E env d="${CMAKE_CURRENT_SOURCE_DIR}/C"
${ITSTOOL} -m "${mofile}" ${help_pages} --output ${CMAKE_CURRENT_BINARY_DIR}/${lang}/
# add timestamp
COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_CURRENT_BINARY_DIR}/${lang}/pages.timestamp
DEPENDS ${pofile}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/C
COMMENT "Generating '${lang}' help files"
)
# copy figures or import missing figures from C into build_dir
foreach (media_file ${help_figures})
if (NOT EXISTS "${CMAKE_CURRENT_BINARY_DIR}/${lang}/${media_file}")
# the <lang> figure has not been created, install the corresponding C figure
file (COPY ${CMAKE_CURRENT_SOURCE_DIR}/C/${media_file}
DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/${lang}/figures
)
endif (NOT EXISTS "${CMAKE_CURRENT_BINARY_DIR}/${lang}/${media_file}")
endforeach (media_file)
add_custom_target(help-${lang}-pages
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${lang}/pages.timestamp
)
add_dependencies(mhelp help-${lang}-pages)
endforeach (lang)
# validate mallard pages
set (mallard-schema ${CMAKE_CURRENT_SOURCE_DIR}/xml/mallard-1.0.rng)
foreach (lang ${help_all_langs})
add_custom_command (OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${lang}/validate.txt
# COMMAND ${XMLLINT} --noout --xinclude --noent --relaxng ${mallard-schema} *.page > ${CMAKE_CURRENT_BINARY_DIR}/${lang}/validate.txt 2>&1
COMMAND ${XMLLINT} --noout --xinclude --noent --relaxng ${mallard-schema} *.page
DEPENDS help-${lang}-pages
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${lang}
COMMENT "'${lang}' help - mallard pages validation report"
)
add_custom_target(validate-${lang}-pages
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${lang}/validate.txt
)
add_dependencies(mhelp validate-${lang}-pages)
endforeach (lang)
# install help files
if (UNIX)
# install mallard help files
foreach (lang ${help_all_langs})
# list help pages to install
set (install_pages)
foreach(page ${help_pages})
list(APPEND install_pages ${CMAKE_CURRENT_BINARY_DIR}/${lang}/${page})
endforeach(page)
# install help files
install (FILES ${install_pages}
DESTINATION ${HELPDIR}/${lang}/${PROJECT_NAME}
)
# list figures to install
set (install_media)
foreach(media ${help_figures})
list(APPEND install_media ${CMAKE_CURRENT_BINARY_DIR}/${lang}/${media})
endforeach(media)
# install figures
install (FILES ${install_media}
DESTINATION ${HELPDIR}/${lang}/${PROJECT_NAME}/figures
)
endforeach (lang)
endif (UNIX)
# custom targets for updating translation files
# NOTE: these targets will update files in the source tree
# target to refresh .pot file
set (help_pot ${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_NAME}.pot)
# list help pages to translate
set (pot_pages)
foreach(page ${help_pages})
list(APPEND pot_pages ${CMAKE_CURRENT_BINARY_DIR}/C/${page})
endforeach(page)
add_custom_target (mhelp_pot
COMMAND ${ITSTOOL} -o ${help_pot} ${pot_pages}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMENT "Updating help pot file."
)
# target for updating a given .po file
set (help_po_update_all echo)
foreach (lang ${help_locales})
add_custom_target (mhelp_${lang}.po
COMMAND ${GETTEXT_MSGMERGE_EXECUTABLE} --update --verbose ${lang}.po ${help_pot}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${lang}
COMMENT "Updating ${lang}.po file"
)
# prepare command for the all po target
set (help_po_update_all ${help_po_update_all} && echo ${lang}.po: && ${GETTEXT_MSGMERGE_EXECUTABLE} --update --verbose ${CMAKE_CURRENT_SOURCE_DIR}/${lang}/${lang}.po ${help_pot})
endforeach()
# target for updating all po files
add_custom_target (mhelp_po
COMMAND ${help_po_update_all}
VERBATIM
)
### optional features
# help files export options
# for building MS Help, we need HTML files as sources
if(MSHELP)
set(HTMLHELP ON)
endif()
# for building PDF, we need the ePub file as source
if(PDFHELP)
set(EPUB ON)
endif()
# export Help to epub
if (EPUB)
message(STATUS "Configuring Help to ePub export")
foreach (lang ${help_all_langs})
# list help pages to convert
set (mallard_pages)
foreach(page ${help_pages})
list(APPEND mallard_pages ${CMAKE_CURRENT_BINARY_DIR}/${lang}/${page})
endforeach(page)
# convert Mallard pages into ePub
add_custom_command (
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${lang}/${PROJECT_NAME}-${lang}.epub
COMMAND
${YELP_BUILD} epub -o ${PROJECT_NAME}-${lang}.epub ${mallard_pages}
DEPENDS validate-${lang}-pages
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${lang}
COMMENT "Generating '${lang}' ePub Help file"
)
add_custom_target(mhelp-epub-${lang}
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${lang}/${PROJECT_NAME}-${lang}.epub
)
add_dependencies(mhelp mhelp-epub-${lang})
# install ePub file
install (FILES
${CMAKE_CURRENT_BINARY_DIR}/${lang}/${PROJECT_NAME}-${lang}.epub
DESTINATION ${CMAKE_INSTALL_DOCDIR}
COMPONENT data
)
endforeach ()
endif(EPUB)
# export Help to HTML
if(HTMLHELP)
message(STATUS "Configuring Help to HTML export")
foreach (lang ${help_all_langs})
# list help pages to convert
set (mallard_pages)
foreach(page ${help_pages})
list(APPEND mallard_pages ${CMAKE_CURRENT_BINARY_DIR}/${lang}/${page})
endforeach(page)
# convert Mallard pages into html files
add_custom_command (OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${lang}/html.timestamp
COMMAND ${CMAKE_COMMAND} -E make_directory html
COMMAND ${YELP_BUILD} html -o html ${mallard_pages}
# make a tarball of all the .html files
COMMAND ${CMAKE_COMMAND} -E tar cvzf xiphos-html-help.tar.gz html
DEPENDS validate-${lang}-pages
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${lang}
COMMENT "Generating '${lang}' html files"
)
add_custom_target(mhelp-html-${lang}
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${lang}/html.timestamp
)
add_dependencies(mhelp mhelp-html-${lang})
# install HTML files
install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${lang}/xiphos-html-help.tar.gz
DESTINATION ${CMAKE_INSTALL_DOCDIR}
COMPONENT data
)
endforeach ()
endif(HTMLHELP)
# export Help to MS Help file
if (MSHELP)
# create Windows© Help files
message(STATUS "Configuring Help to Windows© Help export")
# Notes about errors reported by chmcmd:
# 1. Warning about https://github.com/crosswire/xiphos:
# old versions of chmcmd do not support https links
# 2. Error: Anchor undefined:
# due to missing anchors in index.html
foreach (lang ${help_all_langs})
# make a distinct directory
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${lang}/chm)
# list pages to convert
set (mallard_pages)
foreach(page ${help_pages})
list(APPEND mallard_pages ${CMAKE_CURRENT_BINARY_DIR}/${lang}/${page})
endforeach(page)
# use a custom css for generating HTML4 copatible pages
set(custom_css ${CMAKE_CURRENT_SOURCE_DIR}/xml/html.css.custom.xsl)
# use a Mallard cache file
set(cache_cache ${CMAKE_CURRENT_BINARY_DIR}/${lang}/chm/cache.xml)
# use XSLT to create HtmlHelp files
set(mal2hh_xslt ${CMAKE_CURRENT_SOURCE_DIR}/xml/mal2hh.xsl)
# set the output file name
set(MS_COMPILED_FILE "xiphos_${lang}.chm")
# Compile the Microsoft Windows Help File (.chm)
if (WIN32 AND CMAKE_CROSSCOMPILING)
# Linux: build help with the chmcmd utility (from Free Pascal Compiler)
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${lang}/chm/${MS_COMPILED_FILE}
COMMAND ${YELP_BUILD} cache -o ${cache_cache} ${mallard_pages}
COMMAND ${YELP_BUILD} html -c ${cache_cache} -x ${custom_css} ${mallard_pages}
COMMAND ${XSLTPROC} --stringparam htmlhelp.chm "${MS_COMPILED_FILE}" ${mal2hh_xslt} ${cache_cache}
COMMAND ${CHMCMD} htmlhelp.hhp
COMMAND chmod 644 ${CMAKE_CURRENT_BINARY_DIR}/${lang}/chm/${MS_COMPILED_FILE}
DEPENDS validate-${lang}-pages
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${lang}/chm
COMMENT "Generating '${lang}' Windows© Help file - chmcmd"
)
endif(WIN32 AND CMAKE_CROSSCOMPILING)
# add target to current target
add_custom_target(mhelp-windows-${lang}
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${lang}/chm/${MS_COMPILED_FILE}
)
add_dependencies(mhelp mhelp-windows-${lang})
# install MS-Help files
install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${lang}/chm/${MS_COMPILED_FILE}
DESTINATION ${CMAKE_INSTALL_DATADIR}/help
COMPONENT data
)
endforeach (lang)
endif (MSHELP)
# export Help to PDF
if (PDFHELP)
set(lang "C")
# create a PDF file
message(STATUS "Configuring Help to PDF export")
# convert from ePub to PDF
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${lang}/xiphos.pdf
COMMAND ${EBOOK_CONVERT} xiphos-C.epub xiphos.pdf --base-font-size 8 --linearize-tables --chapter //h:h1 --use-auto-toc
DEPENDS mhelp-epub-${lang}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${lang}
COMMENT "Generating '${lang}' PDF file"
)
# add target to current target
add_custom_target(mhelp-pdf-${lang}
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${lang}/xiphos.pdf
)
add_dependencies(mhelp mhelp-pdf-${lang})
# install PDF file
install (FILES
${CMAKE_CURRENT_BINARY_DIR}/${lang}/xiphos.pdf
DESTINATION ${CMAKE_INSTALL_DOCDIR}
COMPONENT data
)
endif (PDFHELP)
add_dependencies(xiphos mhelp)
endif (HELP)
|