INSTALL 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. LFS Book Conversion Tools Installation Instructions
  2. After downloading the SVN source, there are some things that need to be set up
  3. on your computer if you want to convert the XML source into something easier to
  4. read (e.g. HTML, TXT, PS or PDF). If you are interested in this, then keep
  5. reading. If you are only interested in editing the XML source for re-
  6. submission to the lfs-book or lfs-dev mailing lists, then you do not need this
  7. document. Instead, you need to read the LFS Editor's Manual. See the LFS
  8. website at http://www.linuxfromscratch.org for more information.
  9. -------------------------------------------------------------------------------
  10. If all you want to do is convert XML to HTML perform the following:
  11. * libxml2
  12. - http://www.linuxfromscratch.org/blfs/view/svn/general/libxml2.html
  13. * libxslt
  14. - http://www.linuxfromscratch.org/blfs/view/svn/general/libxslt.html
  15. * DocBook DTD
  16. - http://www.linuxfromscratch.org/blfs/view/svn/pst/xml.html
  17. * DocBook XSL Stylesheets (1.67.0)
  18. - http://www.linuxfromscratch.org/blfs/view/svn/pst/docbook-xsl.html
  19. - additionally create a link from
  20. /usr/share/xml/docbook/xsl-stylesheets-1.67.0 to
  21. /usr/share/xml/docbook/xsl-stylesheets-current
  22. ln -s xsl-stylesheets-[version] /usr/share/xml/docbook/xsl-stylesheets-current
  23. * HTMLTidy
  24. - http://www.linuxfromscratch.org/blfs/view/svn/general/tidy.html
  25. - you'll also need the patch at http://linuxfromscratch.org/~matthew/tidy-041026-prevent_PRE_newlines-1.patch as well.
  26. -------------------------------------------------------------------------------
  27. If you want to be able to convert the book into PDF as well, then you will need
  28. the FOP package. This takes an XSL-FO file (created with libxslt which you
  29. already installed) and converts it to PDF. FOP is dependent on ANT
  30. (Another Neat Tool) and the Java Advanced Imaging (JAI) API.
  31. First we need the Java SDK installed. See
  32. http://www.linuxfromscratch.org/blfs/view/svn/general/j2sdk.html.
  33. Now install JAI:
  34. - Download jai-1_1_2_01-lib-linux-i586-jdk.bin from
  35. http://java.sun.com/products/java-media/jai/downloads/download-1_1_2_01.html
  36. (download the version for the JDK Install).
  37. - chmod +x jai-1_1_2_01-lib-linux-i586-jdk.bin
  38. - cd /opt/j2sdk && /path/to/jai-1_1_2_01-lib-linux-i586-jdk.bin
  39. Next install ANT:
  40. - download http://www.apache.org/dist/ant/source/apache-ant-1.6.2-src.tar.bz2
  41. - tar -xjvf apache-ant-1.6.2-src.tar.bz2
  42. (recent versions of tar will warn about "A lone zero block at 33476" but
  43. this can be safely ignored)
  44. - cd apache-ant-1.6.2 && \
  45. ./boostrap.sh && \
  46. ./build && \
  47. install -d /opt/ant && \
  48. cp -r dist/* /opt/ant
  49. - edit your bash profile to set ANT_HOME=/opt/ant and PATH=$PATH:/opt/ant/bin
  50. And finally install FOP:
  51. - download http://www.apache.org/dist/xml/fop/fop-0.20.5-src.tar.gz
  52. - tar -xzvf fop-0.20.5-src.tar.gz
  53. (recent versions of tar will warn about "A lone zero block at 33476" but
  54. this can be safely ignored)
  55. - cd fop-0.20.5 &&
  56. ./build.sh &&
  57. install -d /opt/fop/{bin,lib} &&
  58. cp lib/{avalon-framework-cvs-20020806.jar,batik.jar} build/fop.jar \
  59. /opt/fop/lib &&
  60. cp fop.sh /opt/fop/bin
  61. - edit your bash profile to set FOP_HOME=/opt/fop and PATH=$PATH:/opt/fop/bin