mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 13:35:00 +00:00
Merge changes from trunk:
Fix PDF install rule so that it's explicit and automatically invokes a PDF build when specified on the command line. So "bjam pdfinstall" will now build and install the PDF to the current directory. This works around some problems that the previous versions had if the user did not have an FO processor installed (basically Daniel James was unable to build the HTML docs for the distribution if the pdfinstall rule was implicit). [SVN r79500]
This commit is contained in:
parent
bf7414c90a
commit
8efc16eed5
15 changed files with 26 additions and 26 deletions
|
@ -40,7 +40,7 @@ install pdf-install
|
|||
../../libs/chrono/doc//standalone
|
||||
../../libs/concept_check/doc//concepts
|
||||
../../libs/config/doc//standalone
|
||||
#../../libs/container/doc//pdf-install
|
||||
#../../libs/container/doc//pdfinstall
|
||||
../../libs/conversion/doc//standalone
|
||||
../../libs/date_time/xmldoc//date_time
|
||||
../../libs/foreach/doc//standalone
|
||||
|
@ -61,7 +61,7 @@ install pdf-install
|
|||
../../libs/math/doc/octonion//standalone
|
||||
../../libs/math/doc/quaternion//standalone
|
||||
../../libs/math/doc/gcd//standalone
|
||||
../../libs/math/doc/sf_and_dist//pdf-install
|
||||
../../libs/math/doc/sf_and_dist//pdfinstall
|
||||
../../libs/move/doc//standalone
|
||||
../../libs/mpi/doc//standalone
|
||||
../../libs/numeric/conversion/doc//standalone
|
||||
|
@ -79,7 +79,7 @@ install pdf-install
|
|||
../../libs/static_assert/doc//standalone
|
||||
../../libs/thread/doc//standalone
|
||||
../../libs/tr1/doc//standalone
|
||||
../../libs/type_traits/doc//pdf-install
|
||||
../../libs/type_traits/doc//pdfinstall
|
||||
../../libs/typeof/doc//standalone
|
||||
../../libs/units/doc//standalone
|
||||
# ../../libs/utility/identity_type/doc//doc
|
||||
|
|
|
@ -2,15 +2,15 @@
|
|||
boost_version=$(grep 'define.*BOOST_LIB_VERSION' ../../boost/version.hpp | sed 's/.*"\([^"]*\)".*/\1/')
|
||||
echo Boost version tag = $boost_version
|
||||
(cd ../../libs/accumulators/doc && bjam -a) 2>&1 | tee build.log
|
||||
(cd ../../libs/container/doc && rm -rf *.pdf && bjam -a pdf xsl:param=fop1.extensions=1 && cp *.pdf ../../../doc/pdf) 2>&1 | tee -a build.log
|
||||
(cd ../../libs/interprocess/doc && rm -rf *.pdf && bjam -a pdf xsl:param=fop1.extensions=1 && cp *.pdf ../../../doc/pdf) 2>&1 | tee -a build.log
|
||||
(cd ../../libs/intrusive/doc && rm -rf *.pdf && bjam -a pdf xsl:param=fop1.extensions=1 && cp *.pdf ../../../doc/pdf) 2>&1 | tee -a build.log
|
||||
(cd ../../libs/container/doc && rm -rf *.pdf && bjam -a pdfinstall xsl:param=fop1.extensions=1 && cp *.pdf ../../../doc/pdf) 2>&1 | tee -a build.log
|
||||
(cd ../../libs/interprocess/doc && rm -rf *.pdf && bjam -a pdfinstall xsl:param=fop1.extensions=1 && cp *.pdf ../../../doc/pdf) 2>&1 | tee -a build.log
|
||||
(cd ../../libs/intrusive/doc && rm -rf *.pdf && bjam -a pdfinstall xsl:param=fop1.extensions=1 && cp *.pdf ../../../doc/pdf) 2>&1 | tee -a build.log
|
||||
(cd ../../libs/geometry/doc/src/docutils/tools/doxygen_xml2qbk && bjam release) 2>&1 | tee -a build.log
|
||||
(cd ../../libs/functional/overloaded_function/doc && rm -rf *.pdf && bjam -a pdf && cp *.pdf ../../../../doc/pdf) 2>&1 | tee -a build.log
|
||||
(cd ../../libs/local_function/doc && rm -rf *.pdf && bjam -a pdf && cp *.pdf ../../../doc/pdf) 2>&1 | tee -a build.log
|
||||
(cd ../../libs/utility/identity_type/doc && rm -rf *.pdf && bjam -a pdf && cp *.pdf ../../../../doc/pdf) 2>&1 | tee -a build.log
|
||||
(cd ../../libs/functional/overloaded_function/doc && rm -rf *.pdf && bjam -a pdfinstall && cp *.pdf ../../../../doc/pdf) 2>&1 | tee -a build.log
|
||||
(cd ../../libs/local_function/doc && rm -rf *.pdf && bjam -a pdfinstall && cp *.pdf ../../../doc/pdf) 2>&1 | tee -a build.log
|
||||
(cd ../../libs/utility/identity_type/doc && rm -rf *.pdf && bjam -a pdfinstall && cp *.pdf ../../../../doc/pdf) 2>&1 | tee -a build.log
|
||||
cp ../../dist/bin/doxygen_xml2qbk* /usr/local/bin
|
||||
(cd ../../libs/geometry/doc && rm -rf *.pdf && ./make_qbk.py && bjam pdf -a xsl:param=fop1.extensions=1 xsl:param=xep.extensions=0 && cp *.pdf ../../../doc/pdf) 2>&1 | tee -a build.log
|
||||
(cd ../../libs/geometry/doc && rm -rf *.pdf && ./make_qbk.py && bjam pdfinstall -a xsl:param=fop1.extensions=1 xsl:param=xep.extensions=0 && cp *.pdf ../../../doc/pdf) 2>&1 | tee -a build.log
|
||||
bjam -a --enable-index pdf -d2 xsl:param=fop1.extensions=0 xsl:param=xep.extensions=1 2>&1 | tee -a build.log
|
||||
rm -rf boost_${boost_version}_pdf
|
||||
mkdir boost_${boost_version}_pdf
|
||||
|
|
|
@ -186,6 +186,8 @@ boostbook standalone
|
|||
<xsl:param>chunk.section.depth=1
|
||||
<xsl:param>boost.root=../../..
|
||||
<xsl:param>navig.graphics=1
|
||||
<xsl:param>boost.mathjax=1
|
||||
<xsl:path>$(images_location)/..
|
||||
|
||||
|
||||
# PDF Options:
|
||||
|
@ -201,7 +203,5 @@ boostbook standalone
|
|||
;
|
||||
|
||||
|
||||
install pdf-install : standalone : <location>. <install-type>PDF ;
|
||||
|
||||
|
||||
|
||||
install pdfinstall : standalone/<format>pdf : <location>. <install-type>PDF ;
|
||||
explicit pdfinstall ;
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 546bdabdc22ffd0d549b2f97dc4a61e2e9a0f6ed
|
||||
Subproject commit e478e405be18ae4a8b5a9df9976bda29ddcf250b
|
|
@ -1 +1 @@
|
|||
Subproject commit 38fbec8fc66303f2688f3ca961d1a50a9ff636c2
|
||||
Subproject commit 1b1589b54d91f5eb2ad746aa13e1d740f4ea9206
|
|
@ -1 +1 @@
|
|||
Subproject commit 2829e75c4421d8b7d9bab63303c8075860030083
|
||||
Subproject commit c5de9436769465e7a6b6a4006cb373d4adb19514
|
|
@ -1 +1 @@
|
|||
Subproject commit be710a76bec50d4cf0777d968ebc8da37e1a8136
|
||||
Subproject commit 67c6803f60bde5e7ffc62e3fcdf5c7c6a79489b2
|
|
@ -1 +1 @@
|
|||
Subproject commit d12ea4e3016bd6da7410022d8be8851fa356e07e
|
||||
Subproject commit 590f9819f910c425bb3ec5db020c0a5a30d9cd55
|
|
@ -1 +1 @@
|
|||
Subproject commit 1ca42f6952e021452c2136c89e92ba8a01b334c4
|
||||
Subproject commit b7e8b0604646bfbd7d348d73d86f11d95acf708d
|
|
@ -1 +1 @@
|
|||
Subproject commit b54ea801bdb77ef1233c063c32d964e6b3180c84
|
||||
Subproject commit b31c0b70d5968fd42c7187c6d3be45416b644f58
|
|
@ -1 +1 @@
|
|||
Subproject commit 6c2a7f1f4d6424bfd5379333a93280bbe33ae887
|
||||
Subproject commit a4d135c5e1351fc49c02e6b3229183eb02a6ee59
|
|
@ -1 +1 @@
|
|||
Subproject commit 0490049642081d168e7869d2fd3e5f94d2832fad
|
||||
Subproject commit 31458502ff316467d1e32ea94df05418dcd4dd64
|
|
@ -1 +1 @@
|
|||
Subproject commit 87ae52573cae8cd184a2770bdfa3ba0529921652
|
||||
Subproject commit df6ede237ab0c5db77a51d60ba6edcceca95e69f
|
|
@ -1 +1 @@
|
|||
Subproject commit 4778b0d7fb62740e028200b0e4d736146aa92e72
|
||||
Subproject commit 1f88e2c1500396acfec7bd3b8f10cd69bbd001b1
|
|
@ -1 +1 @@
|
|||
Subproject commit bff7255740404c3d0c38b406f328814c2082bc4f
|
||||
Subproject commit 7f7a6d2324ad74785e63ef1fc91c84bed1151d48
|
Loading…
Add table
Reference in a new issue