source: INSTALL@ a942c0a

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since a942c0a was a942c0a, checked in by Matthew Burgess <matthew@…>, 20 years ago

Use a configurable XSLROOTDIR to point to the DocBook XSL stylesheets

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3825 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 1.9 KB
Line 
1LFS Book Conversion Tools Installation Instructions
2
3After downloading the CVS source, there are some things that need to be set up
4on your computer if you want to convert the XML source into something easier to
5read (e.g. HTML, TXT, PS or PDF). If you are interested in this, then keep
6reading. If you are only interested in editing the XML source for re-
7submission to the lfs-book or lfs-dev mailing lists, then you do not need this
8document. Instead, you need to read the LFS Editor's Manual. See the LFS
9website at http://www.linuxfromscratch.org for more information.
10
11-------------------------------------------------------------------------------
12If all you want to do is convert XML to HTML perform the following:
13
14* libxml2
15 - http://www.linuxfromscratch.org/blfs/view/cvs/general/libxml2.html
16
17* libxslt
18 - http://www.linuxfromscratch.org/blfs/view/cvs/general/libxslt.html
19
20* DocBook DTD
21 - http://www.linuxfromscratch.org/blfs/view/cvs/pst/xml.html
22
23* DocBook XSL Stylesheets
24 - http://www.linuxfromscratch.org/blfs/view/cvs/pst/docbook-xsl.html
25 - additionally create a link from
26 /usr/share/xml/docbook/xsl-stylesheets-1.65.1 to
27 /usr/share/xml/docbook/xsl-stylesheets-current
28
29 cd /usr/share/xml/docbook/ &&
30 ln -s xsl-stylesheets-1.65.1 xsl-stylesheets-current
31
32* HTMLTidy
33 - http://tidy.sourceforge.net/
34
35 Installation of HTMLTidy is a simple `./configure --prefix=/usr && \
36 make && make install`
37
38-------------------------------------------------------------------------------
39If you want to be able to convert the book into PDF as well, then you will need
40the FOP package. This takes an XSL-FO file (created with libxslt which you
41already installed) and converts it to PDF:
42
43 - http://www.apache.org/dist/xml/fop/fop-0.20.5-bin.tar.gz
44
45 Install FOP by running:
46
47 cd /opt &&
48 tar -xzvf /usr/src/fop-0.20.5-bin.tar.gz &&
49 mv fop-0.20.5 fop
50
51 Now set JAVA_HOME, FOP_HOME and PATH to values appropriate to your system.
Note: See TracBrowser for help on using the repository browser.