5 # Script to hack around xsl:import paths; ideally, the system catalogs are used.
6 # Let every OS define its own manipulations.
7 # Uses the Perl $^O values to identify the current OS.
9 # Define filter_$^O to do substitutions, will be called for every line of
14 s{"http://docbook.sourceforge.net/release/xsl/current/}
15 {"/usr/local/share/xsl/docbook/};
16 s{"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"}
17 {"/usr/local/share/xml/docbook/4.2/docbookx.dtd"};
22 # SUSE 10 with extra pkgs
23 -d "/usr/share/xml/docbook/stylesheet/nwalsh/1.71.1/" &&
24 s{"http://docbook.sourceforge.net/release/xsl/current/}
25 {"/usr/share/xml/docbook/stylesheet/nwalsh/1.71.1/};
26 # Ubuntu/Debian with standard docbook-xsl pkgs
27 -d "/usr/share/xml/docbook/stylesheet/docbook-xsl/" &&
28 s{"http://docbook.sourceforge.net/release/xsl/current/}
29 {"/usr/share/xml/docbook/stylesheet/docbook-xsl/};
30 s{"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"}
31 {"/usr/share/xml/docbook/schema/dtd/4.2/docbookx.dtd"};
36 # NB - this uses the Mac Ports installations
37 s{"http://docbook.sourceforge.net/release/xsl/current/}
38 {"/opt/local/share/xsl/docbook-xsl/};
39 s{"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"}
40 {"/opt/local/share/xml/docbook/4.2/docbookx.dtd"};
44 # Define OS filters above.
47 $os_filter = $main::{"filter_$^O"} if exists $main::{"filter_$^O"};
49 unless (defined $os_filter)
51 print "No changes defined for your OS ($^O).\n";
55 for my $fn (<*.xsl>, <*.xml>)
57 my $orig = "$fn.orig";
58 rename($fn, $orig) or die "Failed to rename($fn, $orig): $!\n";
59 # Most portable is two-argument form, and none of our filenames are
60 # untrusted or contain whitespace.
61 open(OLD, "< $orig") or die "Failed to read-open($orig): $!\n";
62 open(NEW, "> $fn") or die "Failed to write-open($fn): $!\n";
66 print NEW $_ or die "Write to \"$fn\" failed: $!\n";
68 close(NEW) or die "Failed to close($fn) after writing: $!\n";