diff options
author | Scott Garman <scott.a.garman@intel.com> | 2011-01-25 15:05:45 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-01 23:59:35 +0000 |
commit | b2abf1c534bc34d4d4932323aeefa025a82e62c5 (patch) | |
tree | 96a8849d38199ed7b7c6e300b5ce903f6f3995d8 /meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-native.inc | |
parent | b8bb770e96d4c3296f8b2da497675b067145ddf6 (diff) | |
download | poky-b2abf1c534bc34d4d4932323aeefa025a82e62c5.tar.gz |
docbook-sgml-dtd: new recipes - v3.1, v4.1, v4.5
These are recipes for DTDs commonly used when generating
documentation for free software. Recipes dervied from the
versions in OpenEmbedded.
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Diffstat (limited to 'meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-native.inc')
-rw-r--r-- | meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-native.inc | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-native.inc b/meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-native.inc new file mode 100644 index 0000000000..162051f62b --- /dev/null +++ b/meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-native.inc | |||
@@ -0,0 +1,53 @@ | |||
1 | # The DTDs of the various versions have to be installed in parallel and | ||
2 | # should not replace each other. The installation step is common for | ||
3 | # all versions and just differs in ${DTD_VERSION} which is set in each | ||
4 | # version recipe. | ||
5 | # | ||
6 | # The DTDs do have some quirks (see LFS documentation). | ||
7 | SUMMARY = "Document type definitions for verification of SGML data files" | ||
8 | DESCRIPTION = "Document type definitions for verification of SGML data \ | ||
9 | files against the DocBook rule set" | ||
10 | HOMEPAGE = "http://www.docbook.org/sgml/" | ||
11 | |||
12 | DEPENDS = "sgml-common-native" | ||
13 | |||
14 | # Note: the upstream sources are not distributed with a license file. | ||
15 | # LICENSE-OASIS is included as a "patch" to workaround this. When | ||
16 | # upgrading this recipe, please verify whether this is still needed. | ||
17 | SRC_URI = "http://www.docbook.org/sgml/${DTD_VERSION}/docbook-${DTD_VERSION}.zip \ | ||
18 | file://LICENSE-OASIS" | ||
19 | |||
20 | # The .zip file extracts to the current dir | ||
21 | S = "${WORKDIR}" | ||
22 | |||
23 | INC_PR = "r0" | ||
24 | |||
25 | SYSROOT_PREPROCESS_FUNCS += "docbook_sgml_dtd_native_mangle" | ||
26 | |||
27 | inherit native | ||
28 | |||
29 | do_install () { | ||
30 | # Refer to http://www.linuxfromscratch.org/blfs/view/stable/pst/sgml-dtd.html | ||
31 | # for details. | ||
32 | install -d -m 755 ${D}${datadir}/sgml/docbook/sgml-dtd-${DTD_VERSION} | ||
33 | install docbook.cat ${D}${datadir}/sgml/docbook/sgml-dtd-${DTD_VERSION}/catalog | ||
34 | cp -PpRr *.dtd *.mod *.dcl ${D}${datadir}/sgml/docbook/sgml-dtd-${DTD_VERSION} | ||
35 | |||
36 | install-catalog \ | ||
37 | --add ${sysconfdir}/sgml/sgml-docbook-dtd-${DTD_VERSION}.cat \ | ||
38 | ${D}${datadir}/sgml/docbook/sgml-dtd-${DTD_VERSION}/catalog | ||
39 | |||
40 | install-catalog \ | ||
41 | --add ${sysconfdir}/sgml/sgml-docbook-dtd-${DTD_VERSION}.cat \ | ||
42 | ${sysconfdir}/sgml/sgml-docbook.cat | ||
43 | |||
44 | # Copy the generated catalog to the image directory for staging. | ||
45 | install -d ${D}${sysconfdir}/sgml | ||
46 | cp ${sysconfdir}/sgml/sgml-docbook-dtd-${DTD_VERSION}.cat ${D}${sysconfdir}/sgml/ | ||
47 | } | ||
48 | |||
49 | docbook_sgml_dtd_native_mangle () { | ||
50 | # Remove the image directory path ${D} from the .cat files. | ||
51 | sed -i -e "s|${D}||g" ${SYSROOT_DESTDIR}${sysconfdir}/sgml/sgml-docbook.cat || true | ||
52 | sed -i -e "s|${D}||g" ${SYSROOT_DESTDIR}${sysconfdir}/sgml/sgml-docbook-dtd-${DTD_VERSION}.cat | ||
53 | } | ||