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
|
Rev | Line | |
---|
[4965fa8] | 1 | #!/bin/sh
|
---|
| 2 |
|
---|
| 3 | # $Id$
|
---|
| 4 |
|
---|
| 5 | set -e
|
---|
| 6 |
|
---|
| 7 | install -v -m755 -d /usr/share/xml/docbook/xsl-stylesheets-1.69.1
|
---|
| 8 | cp -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 |
|
---|
| 13 | if [ ! -d /etc/xml ]; then install -v -m755 -d /etc/xml; fi
|
---|
| 14 | if [ ! -f /etc/xml/catalog ]; then
|
---|
| 15 | xmlcatalog --noout --create /etc/xml/catalog
|
---|
| 16 | fi
|
---|
| 17 |
|
---|
| 18 | xmlcatalog --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 |
|
---|
| 23 | xmlcatalog --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 |
|
---|
| 28 | xmlcatalog --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 |
|
---|
| 33 | xmlcatalog --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 |
|
---|
| 38 | exit
|
---|
Note:
See
TracBrowser
for help on using the repository browser.