INSTALL 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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
  18. - http://www.linuxfromscratch.org/blfs/view/svn/pst/docbook-xsl.html
  19. * HTMLTidy
  20. - http://www.linuxfromscratch.org/blfs/view/svn/general/tidy.html
  21. - you'll also need the patch at http://linuxfromscratch.org/~matthew/tidy-041026-prevent_PRE_newlines-1.patch as well.
  22. -------------------------------------------------------------------------------
  23. If you want to be able to convert the book into PDF as well, then you will need
  24. the FOP package. This takes an XSL-FO file (created with libxslt which you
  25. already installed) and converts it to PDF. FOP is dependent on ANT
  26. (Another Neat Tool) and the Java Advanced Imaging (JAI) API.
  27. First we need the Java SDK installed. See
  28. http://www.linuxfromscratch.org/blfs/view/svn/general/j2sdk.html.
  29. Now install JAI:
  30. - Download jai-1_1_2_01-lib-linux-i586-jdk.bin from
  31. http://java.sun.com/products/java-media/jai/downloads/download-1_1_2_01.html
  32. (download the version for the JDK Install).
  33. - chmod +x jai-1_1_2_01-lib-linux-i586-jdk.bin
  34. - cd /opt/j2sdk && /path/to/jai-1_1_2_01-lib-linux-i586-jdk.bin
  35. Next install ANT:
  36. - http://www.linuxfromscratch.org/blfs/view/svn/general/apache-ant.html
  37. And finally install FOP:
  38. - download http://www.apache.org/dist/xml/fop/fop-0.20.5-src.tar.gz
  39. - tar -xzvf fop-0.20.5-src.tar.gz
  40. (recent versions of tar will warn about "A lone zero block at 33476" but
  41. this can be safely ignored)
  42. - cd fop-0.20.5 &&
  43. ./build.sh &&
  44. install -d /opt/fop/{bin,lib} &&
  45. cp lib/{avalon-framework-cvs-20020806.jar,batik.jar} build/fop.jar \
  46. /opt/fop/lib &&
  47. cp fop.sh /opt/fop/bin
  48. - edit your bash profile to set FOP_HOME=/opt/fop and PATH=$PATH:/opt/fop/bin