diff options
5 files changed, 132 insertions, 0 deletions
diff --git a/meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-3.1-native.bb b/meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-3.1-native.bb new file mode 100644 index 0000000000..a7df4f9761 --- /dev/null +++ b/meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-3.1-native.bb | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | require docbook-sgml-dtd-native.inc | ||
| 2 | |||
| 3 | LICENSE = "OASIS" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE-OASIS;md5=c608985dd5f7f215e669e7639a0b1d2e" | ||
| 5 | |||
| 6 | DTD_VERSION = "3.1" | ||
| 7 | |||
| 8 | PR = "${INC_PR}.0" | ||
| 9 | |||
| 10 | # Note: the upstream sources are not distributed with a license file. | ||
| 11 | # LICENSE-OASIS is included as a "patch" to workaround this. When | ||
| 12 | # upgrading this recipe, please verify whether this is still needed. | ||
| 13 | SRC_URI = "http://www.docbook.org/sgml/3.1/docbk31.zip \ | ||
| 14 | file://LICENSE-OASIS" | ||
| 15 | |||
| 16 | SRC_URI[md5sum] = "432749c0c806dbae81c8bcb70da3b5d3" | ||
| 17 | SRC_URI[sha256sum] = "20261d2771b9a052abfa3d8fab1aa62be05791a010281c566f9073bf0e644538" | ||
| 18 | |||
| 19 | do_compile() { | ||
| 20 | # Refer to http://www.linuxfromscratch.org/blfs/view/stable/pst/sgml-dtd-3.html | ||
| 21 | # for details. | ||
| 22 | sed -i -e '/ISO 8879/d' -e 's|DTDDECL "-//OASIS//DTD DocBook V3.1//EN"|SGMLDECL|g' docbook.cat | ||
| 23 | } | ||
diff --git a/meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-4.1-native.bb b/meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-4.1-native.bb new file mode 100644 index 0000000000..88c9396360 --- /dev/null +++ b/meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-4.1-native.bb | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | require docbook-sgml-dtd-native.inc | ||
| 2 | |||
| 3 | LICENSE = "OASIS" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE-OASIS;md5=c608985dd5f7f215e669e7639a0b1d2e" | ||
| 5 | |||
| 6 | DTD_VERSION = "4.1" | ||
| 7 | |||
| 8 | PR = "${INC_PR}.0" | ||
| 9 | |||
| 10 | # Note: the upstream sources are not distributed with a license file. | ||
| 11 | # LICENSE-OASIS is included as a "patch" to workaround this. When | ||
| 12 | # upgrading this recipe, please verify whether this is still needed. | ||
| 13 | SRC_URI = "http://docbook.org/sgml/4.1/docbk41.zip \ | ||
| 14 | file://LICENSE-OASIS" | ||
| 15 | |||
| 16 | SRC_URI[md5sum] = "489f6ff2a2173eb1e14216c10533ede2" | ||
| 17 | SRC_URI[sha256sum] = "deaafcf0a3677692e7ad4412c0e41c1db3e9da6cdcdb3dd32b2cc1f9c97d6311" | ||
| 18 | |||
| 19 | do_compile() { | ||
| 20 | # Refer to http://www.linuxfromscratch.org/blfs/view/stable/pst/sgml-dtd.html | ||
| 21 | # for details. | ||
| 22 | sed -i -e '/ISO 8879/d' -e '/gml/d' docbook.cat | ||
| 23 | } | ||
diff --git a/meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-4.5-native.bb b/meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-4.5-native.bb new file mode 100644 index 0000000000..6c464f4215 --- /dev/null +++ b/meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-4.5-native.bb | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | require docbook-sgml-dtd-native.inc | ||
| 2 | |||
| 3 | LICENSE = "OASIS" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE-OASIS;md5=c608985dd5f7f215e669e7639a0b1d2e" | ||
| 5 | |||
| 6 | DTD_VERSION = "4.5" | ||
| 7 | |||
| 8 | PR = "${INC_PR}.0" | ||
| 9 | |||
| 10 | SRC_URI[md5sum] = "07c581f4bbcba6d3aac85360a19f95f7" | ||
| 11 | SRC_URI[sha256sum] = "8043e514e80c6c19cb146b5d37937d1305bf3abf9b0097c36df7f70f611cdf43" | ||
| 12 | |||
| 13 | do_compile() { | ||
| 14 | # Refer to http://www.linuxfromscratch.org/blfs/view/stable/pst/sgml-dtd.html | ||
| 15 | # for details. | ||
| 16 | sed -i -e '/ISO 8879/d' -e'/gml/d' docbook.cat | ||
| 17 | } | ||
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 | } | ||
diff --git a/meta/recipes-devtools/docbook-sgml-dtd/files/LICENSE-OASIS b/meta/recipes-devtools/docbook-sgml-dtd/files/LICENSE-OASIS new file mode 100644 index 0000000000..6da7f5b8c7 --- /dev/null +++ b/meta/recipes-devtools/docbook-sgml-dtd/files/LICENSE-OASIS | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | Permission to use, copy, modify and distribute the DocBook XML DTD | ||
| 2 | and its accompanying documentation for any purpose and without fee | ||
| 3 | is hereby granted in perpetuity, provided that the above copyright | ||
| 4 | notice and this paragraph appear in all copies. The copyright | ||
| 5 | holders make no representation about the suitability of the DTD for | ||
| 6 | any purpose. It is provided "as is" without expressed or implied | ||
| 7 | warranty. | ||
| 8 | |||
| 9 | If you modify the DocBook DTD in any way, except for declaring and | ||
| 10 | referencing additional sets of general entities and declaring | ||
| 11 | additional notations, label your DTD as a variant of DocBook. See | ||
| 12 | the maintenance documentation for more information. | ||
| 13 | |||
| 14 | Please direct all questions, bug reports, or suggestions for | ||
| 15 | changes to the docbook@lists.oasis-open.org mailing list. For more | ||
| 16 | information, see http://www.oasis-open.org/docbook/. | ||
