Difference between revisions of "DocBook XSL Stylesheets"
From CBLFS
Jump to navigationJump to searchLine 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
− | | http://prdownloads.sourceforge.net/docbook/docbook-xsl-1. | + | | http://prdownloads.sourceforge.net/docbook/docbook-xsl-1.71.0.tar.bz2 |
|- | |- | ||
!Optional Documentation: | !Optional Documentation: | ||
− | | http://prdownloads.sourceforge.net/docbook/docbook-xsl-doc-1. | + | | http://prdownloads.sourceforge.net/docbook/docbook-xsl-doc-1.71.0.tar.bz2 |
|} | |} | ||
Line 21: | Line 21: | ||
Install DocBook XSL Stylesheets by running the following commands: | Install DocBook XSL Stylesheets by running the following commands: | ||
− | install -v -m755 -d /usr/share/xml/docbook/xsl-stylesheets-1. | + | install -v -m755 -d /usr/share/xml/docbook/xsl-stylesheets-1.71.0 && |
cp -v -R VERSION common eclipse extensions fo html \ | cp -v -R VERSION common eclipse extensions fo html \ | ||
htmlhelp images javahelp lib manpages params \ | htmlhelp images javahelp lib manpages params \ | ||
profiling slides template website xhtml \ | profiling slides template website xhtml \ | ||
− | /usr/share/xml/docbook/xsl-stylesheets-1. | + | /usr/share/xml/docbook/xsl-stylesheets-1.71.0 |
If you downloaded the optional documentation tarball, install the documentation by issuing the following commands | If you downloaded the optional documentation tarball, install the documentation by issuing the following commands | ||
− | install -v -m755 -d /usr/share/doc/docbook-xsl-1. | + | install -v -m755 -d /usr/share/doc/docbook-xsl-1.71.0 && |
− | cp -v -R doc/* /usr/share/doc/docbook-xsl-1. | + | cp -v -R doc/* /usr/share/doc/docbook-xsl-1.71.0 |
Create (or append) and populate the XML catalog file using the following commands: | Create (or append) and populate the XML catalog file using the following commands: | ||
Line 39: | Line 39: | ||
fi && | fi && | ||
xmlcatalog --noout --add "rewriteSystem" \ | xmlcatalog --noout --add "rewriteSystem" \ | ||
− | "http://docbook.sourceforge.net/release/xsl/1. | + | "http://docbook.sourceforge.net/release/xsl/1.71.0" \ |
− | "/usr/share/xml/docbook/xsl-stylesheets-1. | + | "/usr/share/xml/docbook/xsl-stylesheets-1.71.0" \ |
/etc/xml/catalog && | /etc/xml/catalog && | ||
xmlcatalog --noout --add "rewriteURI" \ | xmlcatalog --noout --add "rewriteURI" \ | ||
− | "http://docbook.sourceforge.net/release/xsl/1. | + | "http://docbook.sourceforge.net/release/xsl/1.71.0" \ |
− | "/usr/share/xml/docbook/xsl-stylesheets-1. | + | "/usr/share/xml/docbook/xsl-stylesheets-1.71.0" \ |
/etc/xml/catalog && | /etc/xml/catalog && | ||
xmlcatalog --noout --add "rewriteSystem" \ | xmlcatalog --noout --add "rewriteSystem" \ | ||
"http://docbook.sourceforge.net/release/xsl/current" \ | "http://docbook.sourceforge.net/release/xsl/current" \ | ||
− | "/usr/share/xml/docbook/xsl-stylesheets-1. | + | "/usr/share/xml/docbook/xsl-stylesheets-1.71.0" \ |
/etc/xml/catalog && | /etc/xml/catalog && | ||
xmlcatalog --noout --add "rewriteURI" \ | xmlcatalog --noout --add "rewriteURI" \ | ||
"http://docbook.sourceforge.net/release/xsl/current" \ | "http://docbook.sourceforge.net/release/xsl/current" \ | ||
− | "/usr/share/xml/docbook/xsl-stylesheets-1. | + | "/usr/share/xml/docbook/xsl-stylesheets-1.71.0" \ |
/etc/xml/catalog | /etc/xml/catalog |
Revision as of 20:55, 12 October 2006
Download Source: | http://prdownloads.sourceforge.net/docbook/docbook-xsl-1.71.0.tar.bz2 |
---|---|
Optional Documentation: | http://prdownloads.sourceforge.net/docbook/docbook-xsl-doc-1.71.0.tar.bz2 |
Dependencies
Required
Non-Multilib or Multilib
If you downloaded the optional documentation tarball, unpack it when you unpack the source tarball. The documentation tarball unpacks into subdirectories of the source tree.
Install DocBook XSL Stylesheets by running the following commands:
install -v -m755 -d /usr/share/xml/docbook/xsl-stylesheets-1.71.0 && cp -v -R VERSION common eclipse extensions fo html \ htmlhelp images javahelp lib manpages params \ profiling slides template website xhtml \ /usr/share/xml/docbook/xsl-stylesheets-1.71.0
If you downloaded the optional documentation tarball, install the documentation by issuing the following commands
install -v -m755 -d /usr/share/doc/docbook-xsl-1.71.0 && cp -v -R doc/* /usr/share/doc/docbook-xsl-1.71.0
Create (or append) and populate the XML catalog file using the following commands:
if [ ! -d /etc/xml ]; then install -v -m755 -d /etc/xml; fi && if [ ! -f /etc/xml/catalog ]; then xmlcatalog --noout --create /etc/xml/catalog fi && xmlcatalog --noout --add "rewriteSystem" \ "http://docbook.sourceforge.net/release/xsl/1.71.0" \ "/usr/share/xml/docbook/xsl-stylesheets-1.71.0" \ /etc/xml/catalog && xmlcatalog --noout --add "rewriteURI" \ "http://docbook.sourceforge.net/release/xsl/1.71.0" \ "/usr/share/xml/docbook/xsl-stylesheets-1.71.0" \ /etc/xml/catalog && xmlcatalog --noout --add "rewriteSystem" \ "http://docbook.sourceforge.net/release/xsl/current" \ "/usr/share/xml/docbook/xsl-stylesheets-1.71.0" \ /etc/xml/catalog && xmlcatalog --noout --add "rewriteURI" \ "http://docbook.sourceforge.net/release/xsl/current" \ "/usr/share/xml/docbook/xsl-stylesheets-1.71.0" \ /etc/xml/catalog