146 | | sudo port install texlive |
147 | | }}} |
148 | | |
149 | | Maybe just `sudo port install texlive +no_x11`? |
150 | | |
151 | | Texlive is a large download and takes a long time to download. |
152 | | |
153 | | There's also `boost-build` but you'll have a copy of that in your boost download anyway. It might also be best to manually install `bjam`, it seems to be working okay for me but might get out of date. |
154 | | |
155 | | On Tiger, you need to be using xsltproc from macport's `libxslt` as the one included in OS X is old, I'm not sure about Leopard. |
| 136 | }}} |
| 137 | |
| 138 | (or maybe just add `+no_x11` to the command line). Formulas won't be anti-aliased - not suitable for production build. |
| 139 | |
| 140 | {{{ |
| 141 | sudo port install docbook-xml-4.2 docbook-xsl libxslt doxygen texlive |
| 142 | }}} |
| 143 | |
| 144 | This takes a long time - in particular, texlive is a large download. |
| 145 | |
| 146 | Macports has packages for `boost-build` and `boost-jam` but I think it might be best to manually install them, so that you're up to date. |
| 147 | |
| 148 | On Tiger, you need to be using xsltproc from macport's `libxslt` as the one included in OS X is very old but it might not be needed on Leopard. |
| 149 | |
| 150 | `user-config.jam`: |
| 151 | |
| 152 | {{{ |
| 153 | using darwin ; |
| 154 | using doxygen ; |
| 155 | using boostbook |
| 156 | : /opt/local/share/xsl/docbook-xsl/ |
| 157 | : /opt/local/share/xml/docbook/4.2 |
| 158 | ; |
| 159 | }}} |