diff text/docbook-xsl/docbook-xsl-post.sh @ 462:be644df25418

text/docbook-xsl: initial import, closes #1561
author David Demelier <markand@malikania.fr>
date Sat, 06 Apr 2019 11:01:23 +0200
parents
children f3e036ac528e
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/text/docbook-xsl/docbook-xsl-post.sh	Sat Apr 06 11:01:23 2019 +0200
@@ -0,0 +1,44 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+if [ ! -d $DESTDIR/etc/xml ]; then
+	install -dm755 -d /etc/xml;
+fi
+
+if [ ! -f $DESTDIR/etc/xml/catalog ]; then
+	xmlcatalog --noout --create $DESTDIR/etc/xml/catalog >/dev/null 2>&1
+fi
+
+xmlcatalog --noout --add "rewriteSystem" \
+	"http://docbook.sourceforge.net/release/xsl/1.79.1" \
+	"/usr/share/xml/docbook/xsl-stylesheets-1.79.1" \
+	$DESTDIR/etc/xml/catalog >/dev/null 2>&1
+
+xmlcatalog --noout --add "rewriteURI" \
+	"http://docbook.sourceforge.net/release/xsl/1.79.1" \
+	"/usr/share/xml/docbook/xsl-stylesheets-1.79.1" \
+	$DESTDIR/etc/xml/catalog >/dev/null 2>&1
+
+xmlcatalog --noout --add "rewriteSystem" \
+	"http://docbook.sourceforge.net/release/xsl/current" \
+	"/usr/share/xml/docbook/xsl-stylesheets-1.79.1" \
+	$DESTDIR/etc/xml/catalog >/dev/null 2>&1
+
+xmlcatalog --noout --add "rewriteURI" \
+	"http://docbook.sourceforge.net/release/xsl/current" \
+	"/usr/share/xml/docbook/xsl-stylesheets-1.79.1" \
+	$DESTDIR/etc/xml/catalog >/dev/null 2>&1