source: common/blfs-tool-deps/906-docbook-xsl@ 9adff0e

2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 9adff0e was 045b2dc, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Merged r3043:3145 from experimental:
New Makefile code and other improvements.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#!/bin/sh
2
3# $Id$
4
5set -e
6
7install -v -m755 -d /usr/share/xml/docbook/xsl-stylesheets-1.69.1
8cp -v -R VERSION common eclipse extensions fo html \
9 htmlhelp images javahelp lib manpages params \
10 profiling slides template website xhtml \
11 /usr/share/xml/docbook/xsl-stylesheets-1.69.1
12
13if [ ! -d /etc/xml ]; then install -v -m755 -d /etc/xml; fi
14if [ ! -f /etc/xml/catalog ]; then
15 xmlcatalog --noout --create /etc/xml/catalog
16fi
17
18xmlcatalog --noout --add "rewriteSystem" \
19 "http://docbook.sourceforge.net/release/xsl/1.69.1" \
20 "/usr/share/xml/docbook/xsl-stylesheets-1.69.1" \
21 /etc/xml/catalog
22
23xmlcatalog --noout --add "rewriteURI" \
24 "http://docbook.sourceforge.net/release/xsl/1.69.1" \
25 "/usr/share/xml/docbook/xsl-stylesheets-1.69.1" \
26 /etc/xml/catalog
27
28xmlcatalog --noout --add "rewriteSystem" \
29 "http://docbook.sourceforge.net/release/xsl/current" \
30 "/usr/share/xml/docbook/xsl-stylesheets-1.69.1" \
31 /etc/xml/catalog
32
33xmlcatalog --noout --add "rewriteURI" \
34 "http://docbook.sourceforge.net/release/xsl/current" \
35 "/usr/share/xml/docbook/xsl-stylesheets-1.69.1" \
36 /etc/xml/catalog
37
38exit
Note: See TracBrowser for help on using the repository browser.