$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r73098 - branches/release/doc/pdf
From: john_at_[hidden]
Date: 2011-07-14 06:57:47
Author: johnmaddock
Date: 2011-07-14 06:57:46 EDT (Thu, 14 Jul 2011)
New Revision: 73098
URL: http://svn.boost.org/trac/boost/changeset/73098
Log:
Update PDF build scripts
Text files modified: 
   branches/release/doc/pdf/Jamfile.v2 |    29 +++++++++++++++++++++++++----           
   branches/release/doc/pdf/build      |     9 ++++++++-                               
   2 files changed, 33 insertions(+), 5 deletions(-)
Modified: branches/release/doc/pdf/Jamfile.v2
==============================================================================
--- branches/release/doc/pdf/Jamfile.v2	(original)
+++ branches/release/doc/pdf/Jamfile.v2	2011-07-14 06:57:46 EDT (Thu, 14 Jul 2011)
@@ -10,6 +10,9 @@
 import doxygen ;
 import quickbook ;
 
+project : requirements <include>../../libs/geometry/doc ;
+
+
 
 boostbook array_docs 
         : ../../libs/array/doc/array.xml 
@@ -33,6 +36,7 @@
     ../../libs/algorithm/string/doc//string_algo 
     ../../libs/bimap/doc//standalone 
     ../../libs/bind/doc//ref-doc 
+    ../../libs/chrono/doc//standalone
     ../../libs/concept_check/doc//concepts 
     ../../libs/config/doc//standalone 
     ../../libs/date_time/xmldoc//date_time 
@@ -42,6 +46,7 @@
     ../../libs/functional/forward/doc//standalone
     ../../libs/functional/hash/doc//standalone
     ../../libs/fusion/doc//quickbook
+    ../../libs/geometry/doc//geometry
     ../../libs/icl/doc//standalone
     ../../libs/interprocess/doc//standalone
     ../../libs/integer/doc//standalone
@@ -53,24 +58,25 @@
     ../../libs/math/doc/octonion//standalone
     ../../libs/math/doc/quaternion//standalone
     ../../libs/math/doc/gcd//standalone
-    ../../libs/math/doc/sf_and_dist//standalone
+    ../../libs/math/doc/sf_and_dist//pdf-install
     ../../libs/mpi/doc//standalone
     ../../libs/numeric/conversion/doc//standalone
     ../../libs/optional/doc//standalone
+    ../../libs/phoenix/doc//phoenix-doc
     ../../libs/program_options/doc//program_option
     ../../libs/property_tree/doc//standalone
     ../../libs/proto/doc//standalone
     # Invalid Jamfile, doesn't use Boostbook anyway??
     #../../libs/ptr_container/doc//standalone
+    ../../libs/ratio/doc//standalone
     ../../libs/regex/doc//standalone
     ../../libs/scope_exit/doc//standalone
     ../../libs/signals/doc//doc
-    ../../libs/spirit/doc//spirit2
     ../../libs/spirit/repository/doc//spirit2_repository
     ../../libs/static_assert/doc//standalone
     ../../libs/thread/doc//standalone
     ../../libs/tr1/doc//standalone
-    ../../libs/type_traits/doc//standalone
+    ../../libs/type_traits/doc//pdf-install
     ../../libs/typeof/doc//standalone
     ../../libs/units/doc//standalone
     ../../libs/unordered/doc//standalone
@@ -115,7 +121,7 @@
     <location>.
     <install-type>PDF
     <format>pdf
-    <name>phoenix.pdf
+    <name>spirit-phoenix-v2.pdf
   ;
 
 install boost-build-install
@@ -152,6 +158,21 @@
 # Just copy the MSM PDF over:
 install msm_install : ../../libs/msm/doc/pdf/msm.pdf : <location>. ;
 
+install spirit-install
+   :
+      ../../libs/spirit/doc//spirit2
+   :
+    <location>.
+    <install-type>PDF
+    <format>pdf
+    <name>spirit2.pdf
+;
+
+
+
+
+
+
 
 
 
Modified: branches/release/doc/pdf/build
==============================================================================
--- branches/release/doc/pdf/build	(original)
+++ branches/release/doc/pdf/build	2011-07-14 06:57:46 EDT (Thu, 14 Jul 2011)
@@ -1,7 +1,11 @@
 #!/bin/bash
 boost_version=$(grep 'define.*BOOST_LIB_VERSION' ../../boost/version.hpp | sed 's/.*"\([^"]*\)".*/\1/')
 echo Boost version tag = $boost_version
-bjam -a --enable-index pdf xsl:param=fop1.extensions=0 xsl:param=xep.extensions=1 2>&1 | tee build.log
+(cd ../../libs/accumulators/doc && bjam -a) 2>&1 | tee build.log
+(cd ../../libs/geometry/doc/src/docutils/tools/doxygen_xml2qbk && bjam release) 2>&1 | tee -a build.log
+cp ../../dist/bin/doxygen_xml2qbk* /usr/local/bin
+(cd ../../libs/geometry/doc && ./make_qbk.py) 2>&1 | tee -a build.log
+bjam -a --enable-index pdf xsl:param=fop1.extensions=0 xsl:param=xep.extensions=1 2>&1 | tee -a build.log
 mkdir boost_${boost_version}_pdf
 mv *.pdf boost_${boost_version}_pdf
 
@@ -11,3 +15,6 @@
 
 
 
+
+
+