comparison DOCS/xml/README @ 31776:6a701db99f5b

Remove instructions for installing XML/XSL packages from source. This information is outside the scope of this README file.
author diego
date Wed, 28 Jul 2010 08:38:45 +0000
parents 44a63a5a3175
children 8b541e3d05c1
comparison
equal deleted inserted replaced
31775:44a63a5a3175 31776:6a701db99f5b
16 On Red Hat systems you need the following packages: 16 On Red Hat systems you need the following packages:
17 libxml2, libxslt, docbook-dtds, docbook-style-xsl 17 libxml2, libxslt, docbook-dtds, docbook-style-xsl
18 18
19 On Debian you will need these packages: 19 On Debian you will need these packages:
20 docbook-xml, docbook-xsl, xsltproc, libxml2-utils 20 docbook-xml, docbook-xsl, xsltproc, libxml2-utils
21
22
23 Installing the required tools from source
24 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25
26 1) Download libxslt AND libxml2 packages from
27 http://xmlsoft.org/XSLT/downloads.html
28
29 Installing them should be straightforward, execute the usual "./configure"
30 and "make" then "make install" commands.
31
32
33 2) Download the docbook-xml package from http://www.oasis-open.org/docbook/xml/
34 Use the newest version. The URL will be something like this:
35
36 http://www.oasis-open.org/docbook/xml/4.2/docbook-xml-4.2.zip
37
38 Extract this package into a directory, enter it, and execute the following
39 commands:
40
41 mkdir -p /usr/share/sgml/docbook/dtd/xml/4.2/
42 cp -r * /usr/share/sgml/docbook/dtd/xml/4.2/
43
44
45 3) Download the docbook-xsl package from
46 http://prdownloads.sourceforge.net/docbook/
47
48 Use the newest version. The URL will be something like this:
49
50 http://prdownloads.sourceforge.net/docbook/docbook-xsl-1.62.0.tar.gz
51
52 Extract this package into a directory, enter it, and execute the following
53 commands:
54
55 mkdir -p /usr/share/sgml/docbook/stylesheet/xsl/nwalsh
56 cp -r VERSION common html lib /usr/share/sgml/docbook/stylesheet/xsl/nwalsh
57 21
58 22
59 Building the documentation 23 Building the documentation
60 ~~~~~~~~~~~~~~~~~~~~~~~~~~ 24 ~~~~~~~~~~~~~~~~~~~~~~~~~~
61 25