the Fink project is an effort to port
popular Unix programs to Mac OS X
Package: docbook-xsl
Version: 1.76.1
Revision: 1
Description: Norman Walsh's XSL DocBook stylesheets
License: BSD
Maintainer: Benjamin Reed
Depends: libxml2-bin
Suggests: <<
docbook-dtd,
openjade
<<
Source: mirror:sourceforge:docbook/%n-%v.tar.bz2
Source-MD5: b5340507cb240cc7ce00632b9c40bff5
Source2: mirror:sourceforge:docbook/%n-doc-%v.tar.bz2
Source2-MD5: 200b1047cdbfb87cfc49b3f841513a21
UseMaxBuildJobs: true
CompileScript: echo "Compile phase: nothing to do."
InstallScript: <<
#!/bin/sh -ev
/usr/bin/install -d -m 755 %i/share/xml/xsl/docbook-xsl
/usr/bin/install -d -m 755 %i/share/doc/docbook-xsl
/bin/cp -R doc/* %i/share/doc/docbook-xsl
/bin/rm -Rf doc
/bin/cp -R * %i/share/xml/xsl/docbook-xsl
/bin/rm -f %i/share/xml/xsl/docbook-xsl/install.sh
/bin/rm -f %i/share/xml/xsl/docbook-xsl/uninstall.sh
/bin/rm -f %i/share/xml/xsl/docbook-xsl/test.sh
/bin/rm -f %i/share/xml/xsl/docbook-xsl/.CatalogManager.properties.example
/bin/rm -f %i/share/xml/xsl/docbook-xsl/.cshrc.incl
/bin/rm -f %i/share/xml/xsl/docbook-xsl/.emacs.el
/bin/rm -f %i/share/xml/xsl/docbook-xsl/.profile.incl
/bin/rm -f %i/share/xml/xsl/docbook-xsl/.urilist
/usr/bin/install -d -m 755 %i/etc/xml/catalog.d
/bin/cat <
"rewriteSystem" "http://docbook.sourceforge.net/release/xsl/%v" "file://%p/share/xml/xsl/docbook-xsl"
"rewriteSystem" "http://docbook.sourceforge.net/release/xsl/current" "file://%p/share/xml/xsl/docbook-xsl"
"rewriteURI" "http://docbook.sourceforge.net/release/xsl/%v" "file://%p/share/xml/xsl/docbook-xsl"
"rewriteURI" "http://docbook.sourceforge.net/release/xsl/current" "file://%p/share/xml/xsl/docbook-xsl"
END
<<
DocFiles: AUTHORS BUGS COPYING INSTALL NEWS NEWS.* README RELEASE-NOTES.* TODO VERSION
PostInstScript: <<
case "$1" in
configure)
update-xml-catalog
;;
esac
<<
PostRmScript: <<
case "$1" in
abort-install|purge|remove)
if [ -x %p/sbin/update-xml-catalog ]; then
update-xml-catalog
fi
;;
esac
<<
Homepage: http://sourceforge.net/projects/docbook/
DescDetail: <<
XSL stylesheets for the DocBook DTD (they are also completely
compatible with the DocBook DSSSL DTD and the Simplified DocBook DTD).
<<
DescUsage: <<
Obviously you need the DocBook DTD.
If you want to process SGML files, you need also openjade and
probably both lpd and Norman Walsh dsssl stylesheets.
Then if you want to use xsltproc, you have all installed already.
If you want to use Saxon, you need to install it, and optionally
(but recommended) Xerces, which provides additional features.
The documentation is installed in %p/share/doc/docbook-xsl.
This release is mainly a bug fix release, though it has some
new features and features changes:
1 - Support for profiling based on xml:lang and status
2 - Initial support for footnotes, annnotation and alt in
manpages
3 - Default indexing method returned to "kosek"
4 - Support for xml:base in xalan for db5 docs
5 - Some changes in xmlns delcarations for saxon and xalan
6 - Added append attributes in html to get newline character
at the end of files
See the release notes for more info:
<<
DescPackaging: <<
The stylesheets are installed in %p/share/xml/xsl/docbook-xsl/ to
allow installation of other stylesheet packages in %p/share/xml/xsl/
Formerly maintained by Michele Garoche
<<
DescPort: <<
Previous maintainer Thomas Kotzian
Adding proper prefix to rm, cp, cat, and install so that there is no
problem with other versions of those tools installed elsewhere.
Added documentation
<<