summaryrefslogtreecommitdiffstats
path: root/handbook
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2010-06-04 14:48:34 +0100
committerJoshua Lock <josh@linux.intel.com>2010-06-04 20:02:06 +0100
commit1ccbc1549ec509d737dc39a9440aae1650bde1ad (patch)
treea8f16a01b1e3a52bac7f0991f806855291fe4b1d /handbook
parentf5d0471541ddc29f11c2f17075fd8d46adea740d (diff)
downloadpoky-1ccbc1549ec509d737dc39a9440aae1650bde1ad.tar.gz
handbook: use XML catalogues to make building work on all(?) distros
Thanks to Damien's pointers we should now be able to generate the handbook regardless of host distro Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'handbook')
-rw-r--r--handbook/Makefile12
-rw-r--r--handbook/poky-doc-tools/Makefile.am8
-rwxr-xr-xhandbook/poky-doc-tools/autogen.sh2
-rw-r--r--handbook/poky-doc-tools/common/poky-db-pdf.xsl2
-rw-r--r--handbook/poky-doc-tools/poky-docbook-to-pdf.in7
5 files changed, 23 insertions, 8 deletions
diff --git a/handbook/Makefile b/handbook/Makefile
index 01353b11af..5dff1a8742 100644
--- a/handbook/Makefile
+++ b/handbook/Makefile
@@ -1,7 +1,6 @@
1all: html pdf tarball 1all: html pdf tarball
2 2
3pdf: 3pdf:
4
5 ./poky-doc-tools/poky-docbook-to-pdf poky-handbook.xml 4 ./poky-doc-tools/poky-docbook-to-pdf poky-handbook.xml
6 ./poky-doc-tools/poky-docbook-to-pdf bsp-guide.xml 5 ./poky-doc-tools/poky-docbook-to-pdf bsp-guide.xml
7# -- old way -- 6# -- old way --
@@ -11,12 +10,17 @@ XSLTOPTS = --stringparam html.stylesheet style.css \
11 --stringparam chapter.autolabel 1 \ 10 --stringparam chapter.autolabel 1 \
12 --stringparam appendix.autolabel 1 \ 11 --stringparam appendix.autolabel 1 \
13 --stringparam section.autolabel 1 12 --stringparam section.autolabel 1
14XSLTOPTS2 = --xinclude /usr/share/xml/docbook/stylesheet/nwalsh/html/docbook.xsl 13
14##
15# These URI should be rewritten by your distribution's xml catalog to
16# match your localy installed XSL stylesheets.
17XSL_BASE_URI = http://docbook.sourceforge.net/release/xsl/current
18XSL_XHTML_URI = $(XSL_BASE_URI)/xhtml/docbook.xsl
15 19
16html: 20html:
17# See http://www.sagehill.net/docbookxsl/HtmlOutput.html 21# See http://www.sagehill.net/docbookxsl/HtmlOutput.html
18 xsltproc $(XSLTOPTS) -o poky-handbook.html $(XSLTOPTS2) poky-handbook.xml 22 xsltproc $(XSLTOPTS) -o poky-handbook.html $(XSL_XHTML_URI) poky-handbook.xml
19 xsltproc $(XSLTOPTS) -o bsp-guide.html $(XSLTOPTS2) bsp-guide.xml 23 xsltproc $(XSLTOPTS) -o bsp-guide.html $(XSL_XHTML_URI) bsp-guide.xml
20# -- old way -- 24# -- old way --
21# xmlto xhtml-nochunks poky-handbook.xml 25# xmlto xhtml-nochunks poky-handbook.xml
22 26
diff --git a/handbook/poky-doc-tools/Makefile.am b/handbook/poky-doc-tools/Makefile.am
index ca92ae714c..4533cd832d 100644
--- a/handbook/poky-doc-tools/Makefile.am
+++ b/handbook/poky-doc-tools/Makefile.am
@@ -7,7 +7,13 @@ bin_SCRIPTS = poky-docbook-to-pdf
7edit = sed \ 7edit = sed \
8 -e 's,@datadir\@,$(pkgdatadir),g' \ 8 -e 's,@datadir\@,$(pkgdatadir),g' \
9 -e 's,@prefix\@,$(prefix),g' \ 9 -e 's,@prefix\@,$(prefix),g' \
10 -e 's,@version\@,@VERSION@,g' 10 -e 's,@version\@,@VERSION@,g'
11
12##
13# These URI should be rewritten by your distribution's xml catalog to
14# match your localy installed XSL stylesheets.
15XSL_BASE_URI="http://docbook.sourceforge.net/release/xsl/current"
16XSL_TEMPLATE_URI = $(XSL_BASE_URI)/template/titlepage.xsl
11 17
12poky-docbook-to-pdf: poky-docbook-to-pdf.in 18poky-docbook-to-pdf: poky-docbook-to-pdf.in
13 rm -f poky-docbook-to-pdf 19 rm -f poky-docbook-to-pdf
diff --git a/handbook/poky-doc-tools/autogen.sh b/handbook/poky-doc-tools/autogen.sh
index 5daa935608..d68a142b83 100755
--- a/handbook/poky-doc-tools/autogen.sh
+++ b/handbook/poky-doc-tools/autogen.sh
@@ -1,3 +1,3 @@
1#! /bin/sh 1#! /bin/sh
2autoreconf -v --install || exit 1 2autoreconf -v --install || exit 1
3./configure --enable-maintainer-mode --enable-debug "$@" 3./configure "$@"
diff --git a/handbook/poky-doc-tools/common/poky-db-pdf.xsl b/handbook/poky-doc-tools/common/poky-db-pdf.xsl
index 302e66f640..3dd065a57e 100644
--- a/handbook/poky-doc-tools/common/poky-db-pdf.xsl
+++ b/handbook/poky-doc-tools/common/poky-db-pdf.xsl
@@ -1,7 +1,7 @@
1<?xml version='1.0'?> 1<?xml version='1.0'?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0"> 2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0">
3 3
4 <xsl:import href="file:///usr/share/xml/docbook/stylesheet/nwalsh/fo/docbook.xsl"/> 4 <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl" />
5 5
6 <!-- check project-plan.sh for how this is generated, needed to tweak 6 <!-- check project-plan.sh for how this is generated, needed to tweak
7 the cover page 7 the cover page
diff --git a/handbook/poky-doc-tools/poky-docbook-to-pdf.in b/handbook/poky-doc-tools/poky-docbook-to-pdf.in
index cc999ab995..b56aee4954 100644
--- a/handbook/poky-doc-tools/poky-docbook-to-pdf.in
+++ b/handbook/poky-doc-tools/poky-docbook-to-pdf.in
@@ -18,9 +18,14 @@ BASENAME=`basename $1 .xml` || exit 1
18FO="$BASENAME.fo" 18FO="$BASENAME.fo"
19PDF="$BASENAME.pdf" 19PDF="$BASENAME.pdf"
20 20
21##
22# These URI should be rewritten by your distribution's xml catalog to
23# match your localy installed XSL stylesheets.
24XSL_BASE_URI="http://docbook.sourceforge.net/release/xsl/current"
25
21xsltproc -o /tmp/titlepage.xsl \ 26xsltproc -o /tmp/titlepage.xsl \
22 --xinclude \ 27 --xinclude \
23 /usr/share/xml/docbook/stylesheet/nwalsh/template/titlepage.xsl \ 28 $XSL_BASE_URI/template/titlepage.xsl \
24 @datadir@/common/titlepage.templates.xml || exit 1 29 @datadir@/common/titlepage.templates.xml || exit 1
25 30
26xsltproc --xinclude \ 31xsltproc --xinclude \