X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/a21196501a7c718aa809e927fc9f1f38ed481cec..a1ec98dd963767551514cae86c7af56c6aa3f36e:/doc/doc-docbook/OS-Fixups diff --git a/doc/doc-docbook/OS-Fixups b/doc/doc-docbook/OS-Fixups index f9c1d987f..0a3b4113d 100755 --- a/doc/doc-docbook/OS-Fixups +++ b/doc/doc-docbook/OS-Fixups @@ -1,8 +1,8 @@ #!/usr/bin/perl -w -# $Cambridge: exim/doc/doc-docbook/OS-Fixups,v 1.1 2009/10/16 10:36:52 nm4 Exp $ + use strict; -# Script to hack around using absolute paths in xsl:import with fixups. +# Script to hack around xsl:import paths; ideally, the system catalogs are used. # Let every OS define its own manipulations. # Uses the Perl $^O values to identify the current OS. # @@ -11,12 +11,36 @@ use strict; sub filter_freebsd { -s{"/usr/share/sgml/docbook/xsl-stylesheets-1.70.1/} +s{"http://docbook.sourceforge.net/release/xsl/current/} {"/usr/local/share/xsl/docbook/}; s{"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"} {"/usr/local/share/xml/docbook/4.2/docbookx.dtd"}; } +sub filter_linux +{ +# SUSE 10 with extra pkgs +-d "/usr/share/xml/docbook/stylesheet/nwalsh/1.71.1/" && + s{"http://docbook.sourceforge.net/release/xsl/current/} + {"/usr/share/xml/docbook/stylesheet/nwalsh/1.71.1/}; +# Ubuntu/Debian with standard docbook-xsl pkgs +-d "/usr/share/xml/docbook/stylesheet/docbook-xsl/" && + s{"http://docbook.sourceforge.net/release/xsl/current/} + {"/usr/share/xml/docbook/stylesheet/docbook-xsl/}; +s{"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"} + {"/usr/share/xml/docbook/schema/dtd/4.2/docbookx.dtd"}; +} + +sub filter_darwin +{ +# NB - this uses the Mac Ports installations +s{"http://docbook.sourceforge.net/release/xsl/current/} + {"/opt/local/share/xsl/docbook-xsl/}; +s{"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"} + {"/opt/local/share/xml/docbook/4.2/docbookx.dtd"}; +} + + # Define OS filters above. my $os_filter;