no need any more to create catalog file manually in build-manpages-git
[sfrench/samba-autobuild/.git] / release-scripts / build-manpages-git
1 #!/bin/sh
2 #
3 # Copyright (C) Michael Adam 2010
4
5 _exit() {
6         echo $@
7         popd
8         exit 1
9 }
10
11 DIRNAME=$(dirname $0)
12 DOCS_XML_DIR=${DIRNAME}/../docs-xml
13 DOCS_DIR=${DIRNAME}/../docs
14
15 pushd ${DOCS_XML_DIR} || exit 1
16
17 git clean -xdf || _exit "Error running git clean."
18
19 autoconf || _exit "Error running autoconf."
20
21 ./configure || _exit "Error running configure."
22
23 export XML_CATALOG_FILES="file:///etc/xml/catalog file://$(pwd)/build/catalog.xml"
24
25 make manpages3 || _exit "Error running make manpages3"
26
27 popd
28
29 test -e ${DOCS_DIR}/manpages && rm -rf ${DOCS_DIR}/manpages
30 mkdir -p ${DOCS_DIR}/manpages
31
32 rsync -Ca ${DOCS_XML_DIR}/output/manpages-3/ ${DOCS_DIR}/manpages
33
34 echo "Success"
35 exit
36
37 # END