3 # tridge@samba.org August 2006
8 if [ -z "$XSLTPROC" ] ||
[ ! -x "$XSLTPROC" ]; then
9 echo "xsltproc not installed"
13 MANXSL
="http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl"
14 HTMLXSL
="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"
18 for f
in $SRCDIR/man
/*.xml
; do
19 base
=`basename $f .xml`
20 out
=man
/"`basename $base`"
21 if [ ! -f "$out" ] ||
[ "$f" -nt "$out" ]; then
22 echo Processing manpage
$f
23 $XSLTPROC --nonet -o "$out" "$MANXSL" $f
25 if [ "$ret" = "4" ]; then
26 echo "ignoring stylesheet error 4 for $MANXSL"
29 if [ "$ret" != "0" ]; then
30 echo "xsltproc failed with error $ret"
36 for f
in $SRCDIR/man
/*.xml
; do
37 base
=`basename $f .xml`
38 out
=man
/"`basename $base`".html
39 if [ ! -f "$out" ] ||
[ "$f" -nt "$out" ]; then
40 echo Processing html
$f
41 $XSLTPROC --nonet -o "$out" "$HTMLXSL" $f
43 if [ "$ret" = "4" ]; then
44 echo "ignoring stylesheet error 4 for $HTMLXSL"
47 if [ "$ret" != "0" ]; then
48 echo "xsltproc failed with error $ret"