aboutsummaryrefslogtreecommitdiffstats
path: root/handbook/poky-doc-tools/poky-docbook-to-pdf.in
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-09-29 15:26:29 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-09-29 15:27:04 +0100
commit2624b6181411fe722c73ec95aba9ea8c3d92bca5 (patch)
treebb3c5db53c6c5fbbdb086c90a644ece12cda8e21 /handbook/poky-doc-tools/poky-docbook-to-pdf.in
parent1e0e6f11850c7014700604f7e24f9579d8d19102 (diff)
downloadopenembedded-core-contrib-2624b6181411fe722c73ec95aba9ea8c3d92bca5.tar.gz
poky-doc-tools: Remove unnecessary autotools usage and simplfy structure
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'handbook/poky-doc-tools/poky-docbook-to-pdf.in')
-rw-r--r--handbook/poky-doc-tools/poky-docbook-to-pdf.in49
1 files changed, 0 insertions, 49 deletions
diff --git a/handbook/poky-doc-tools/poky-docbook-to-pdf.in b/handbook/poky-doc-tools/poky-docbook-to-pdf.in
deleted file mode 100644
index b56aee4954..0000000000
--- a/handbook/poky-doc-tools/poky-docbook-to-pdf.in
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/sh
-
-if [ -z "$1" ]; then
- echo "usage: [-v] $0 <docbook file>"
- echo
- echo "*NOTE* you need xsltproc, fop and nwalsh docbook stylesheets"
- echo " installed for this to work!"
- echo
- exit 0
-fi
-
-if [ "$1" = "-v" ]; then
- echo "Version @version@"
- exit 1
-fi
-
-BASENAME=`basename $1 .xml` || exit 1
-FO="$BASENAME.fo"
-PDF="$BASENAME.pdf"
-
-##
-# These URI should be rewritten by your distribution's xml catalog to
-# match your localy installed XSL stylesheets.
-XSL_BASE_URI="http://docbook.sourceforge.net/release/xsl/current"
-
-xsltproc -o /tmp/titlepage.xsl \
- --xinclude \
- $XSL_BASE_URI/template/titlepage.xsl \
- @datadir@/common/titlepage.templates.xml || exit 1
-
-xsltproc --xinclude \
- --stringparam hyphenate false \
- --stringparam formal.title.placement "figure after" \
- --stringparam ulink.show 1 \
- --stringparam body.font.master 9 \
- --stringparam title.font.master 11 \
- --stringparam draft.watermark.image "@datadir@/common/draft.png" \
- --output $FO \
- @datadir@/common/poky-db-pdf.xsl \
- $1 || exit 1
-
-fop -c @datadir@/common/fop-config.xml -fo $FO -pdf $PDF || exit 1
-
-rm -f $FO
-rm -f /tmp/titlepage.xsl
-
-echo
-echo " #### Success! $PDF ready. ####"
-echo \ No newline at end of file