Hi,

The attached patch adds quickbook install instructions for Debian and Debian derivatives to the existing windows instructions. Is it okay for me to commit it?

Daniel
Index: quickbook.qbk
===================================================================
RCS file: /cvsroot/boost/boost/tools/quickbook/doc/quickbook.qbk,v
retrieving revision 1.46
diff -u -r1.46 quickbook.qbk
--- quickbook.qbk	6 Sep 2006 22:04:57 -0000	1.46
+++ quickbook.qbk	26 Sep 2006 19:36:11 -0000
@@ -1561,6 +1561,48 @@
 
 [endsect]
 
+[section Debian, Ubuntu]
+
+The following instructions apply to Debian and its derivatives. It is based
+on a Ubuntu Edgy install, but it should work on other Debian based systems.
+
+# First install the `bjam`, `xsltproc`, `docbook-xsl` and `docbook-xml`
+ packages. If you're planning on building boost's documentation, you'll
+ also want to install the `doxygen` package as well. For example, using `apt-get`:
+
+    sudo apt-get install xsltprc docbook-xsl docbook-xml doxygen
+
+# Add the following to your `user-config.jam` file, which should be in your
+  home directory. If you don't have one create a text file containing just
+  this text.
+
+    using xsltproc ;
+
+    using boostbook 
+        : /usr/share/xml/docbook/stylesheet/nwalsh
+        : /usr/share/xml/docbook/schema/dtd/4.2
+        ;
+
+    # Remove this line if you're not using doxygen
+    using doxygen ;
+
+# Go to Quickbook's source directory (`BOOST_ROOT/tools/quickbook`).
+
+# Build the utility by issuing `bjam --v2`.
+
+# Copy the resulting `quickbook` binary (located at
+  `BOOST_ROOT/dist/bin/quickbook` hierarchy) to a safe place. The traditional
+  location would be `/usr/local/bin`, but anywhere sensible will do.
+
+# Add the following to your `user-config.jam` file (using the path where you
+  placed the quickbook executable):
+
+    using quickbook
+        : /usr/local/bin/quickbook
+        ;
+
+[endsect]
+
 [endsect]
 
 [section:ref Quick Reference]
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-docs mailing list
[email protected]
Unsubscribe and other administrative requests: 
https://lists.sourceforge.net/lists/listinfo/boost-docs

Reply via email to