From b2abf1c534bc34d4d4932323aeefa025a82e62c5 Mon Sep 17 00:00:00 2001 From: Scott Garman Date: Tue, 25 Jan 2011 15:05:45 -0800 Subject: 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 --- .../docbook-sgml-dtd/docbook-sgml-dtd-native.inc | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-native.inc (limited to 'meta/recipes-devtools/docbook-sgml-dtd/docbook-sgml-dtd-native.inc') 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 @@ +# The DTDs of the various versions have to be installed in parallel and +# should not replace each other. The installation step is common for +# all versions and just differs in ${DTD_VERSION} which is set in each +# version recipe. +# +# The DTDs do have some quirks (see LFS documentation). +SUMMARY = "Document type definitions for verification of SGML data files" +DESCRIPTION = "Document type definitions for verification of SGML data \ +files against the DocBook rule set" +HOMEPAGE = "http://www.docbook.org/sgml/" + +DEPENDS = "sgml-common-native" + +# Note: the upstream sources are not distributed with a license file. +# LICENSE-OASIS is included as a "patch" to workaround this. When +# upgrading this recipe, please verify whether this is still needed. +SRC_URI = "http://www.docbook.org/sgml/${DTD_VERSION}/docbook-${DTD_VERSION}.zip \ + file://LICENSE-OASIS" + +# The .zip file extracts to the current dir +S = "${WORKDIR}" + +INC_PR = "r0" + +SYSROOT_PREPROCESS_FUNCS += "docbook_sgml_dtd_native_mangle" + +inherit native + +do_install () { + # Refer to http://www.linuxfromscratch.org/blfs/view/stable/pst/sgml-dtd.html + # for details. + install -d -m 755 ${D}${datadir}/sgml/docbook/sgml-dtd-${DTD_VERSION} + install docbook.cat ${D}${datadir}/sgml/docbook/sgml-dtd-${DTD_VERSION}/catalog + cp -PpRr *.dtd *.mod *.dcl ${D}${datadir}/sgml/docbook/sgml-dtd-${DTD_VERSION} + + install-catalog \ + --add ${sysconfdir}/sgml/sgml-docbook-dtd-${DTD_VERSION}.cat \ + ${D}${datadir}/sgml/docbook/sgml-dtd-${DTD_VERSION}/catalog + + install-catalog \ + --add ${sysconfdir}/sgml/sgml-docbook-dtd-${DTD_VERSION}.cat \ + ${sysconfdir}/sgml/sgml-docbook.cat + + # Copy the generated catalog to the image directory for staging. + install -d ${D}${sysconfdir}/sgml + cp ${sysconfdir}/sgml/sgml-docbook-dtd-${DTD_VERSION}.cat ${D}${sysconfdir}/sgml/ +} + +docbook_sgml_dtd_native_mangle () { + # Remove the image directory path ${D} from the .cat files. + sed -i -e "s|${D}||g" ${SYSROOT_DESTDIR}${sysconfdir}/sgml/sgml-docbook.cat || true + sed -i -e "s|${D}||g" ${SYSROOT_DESTDIR}${sysconfdir}/sgml/sgml-docbook-dtd-${DTD_VERSION}.cat +} -- cgit v1.2.3-54-g00ecf