X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/8127b38f56ed11c265e8ef5b3b65ec1c88421286..62ee80535b325100f05758fe1b6d22cb3cae9f73:/doc/doc-docbook/OS-Fixups diff --git a/doc/doc-docbook/OS-Fixups b/doc/doc-docbook/OS-Fixups index 415a611f5..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.2 2009/11/09 16:12:37 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,16 +11,30 @@ 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{"/usr/share/sgml/docbook/xsl-stylesheets-1.70.1/} +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"};