summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/docbook-dsssl-stylesheets
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2016-09-30 12:52:25 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-10-28 16:15:19 +0100
commit671780de49f93ec1cc28f5ad2a7eebe211918b85 (patch)
tree42ebe78d73a3f0a0fa49fb83ff1f2e557c9dc505 /meta/recipes-devtools/docbook-dsssl-stylesheets
parentd95ef2a0aa3116783cd01a905b46fc4920ebae9f (diff)
downloadpoky-671780de49f93ec1cc28f5ad2a7eebe211918b85.tar.gz
Remove the SGML stack
It is not used for anything, and is something of a pain to maintain. (From OE-Core rev: 4814d93646f6b86aaffbd3fca1af29c8c577db5b) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/docbook-dsssl-stylesheets')
-rw-r--r--meta/recipes-devtools/docbook-dsssl-stylesheets/docbook-dsssl-stylesheets-native_1.79.bb71
1 files changed, 0 insertions, 71 deletions
diff --git a/meta/recipes-devtools/docbook-dsssl-stylesheets/docbook-dsssl-stylesheets-native_1.79.bb b/meta/recipes-devtools/docbook-dsssl-stylesheets/docbook-dsssl-stylesheets-native_1.79.bb
deleted file mode 100644
index b7791f360b..0000000000
--- a/meta/recipes-devtools/docbook-dsssl-stylesheets/docbook-dsssl-stylesheets-native_1.79.bb
+++ /dev/null
@@ -1,71 +0,0 @@
1SUMMARY = "DSSSL stylesheets used to transform SGML and XML DocBook files"
2HOMEPAGE = "http://docbook.sourceforge.net"
3# Simple persmissive
4LICENSE = "DSSSL"
5LIC_FILES_CHKSUM = "file://README;beginline=41;endline=74;md5=875385159b2ee76ecf56136ae7f542d6"
6
7DEPENDS = "sgml-common-native"
8
9PR = "r4"
10
11SRC_URI = "${SOURCEFORGE_MIRROR}/docbook/docbook-dsssl-${PV}.tar.bz2"
12
13SRC_URI[md5sum] = "bc192d23266b9a664ca0aba4a7794c7c"
14SRC_URI[sha256sum] = "2f329e120bee9ef42fbdd74ddd60e05e49786c5a7953a0ff4c680ae6bdf0e2bc"
15
16UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/docbook/files/docbook-dsssl/"
17UPSTREAM_CHECK_REGEX = "/docbook-dsssl/(?P<pver>(\d+[\.\-_]*)+)/"
18
19S = "${WORKDIR}/docbook-dsssl-${PV}"
20
21inherit native
22
23SSTATEPOSTINSTFUNCS += "docbook_dsssl_stylesheets_sstate_postinst"
24SYSROOT_PREPROCESS_FUNCS += "docbook_dsssl_sysroot_preprocess"
25CLEANFUNCS += "docbook_dsssl_stylesheets_sstate_clean"
26
27
28do_install () {
29 # Refer to http://www.linuxfromscratch.org/blfs/view/stable/pst/docbook-dsssl.html
30 # for details.
31 install -d ${D}${bindir}
32 install -m 0755 bin/collateindex.pl ${D}${bindir}
33
34 install -d ${D}${datadir}/sgml/docbook/dsssl-stylesheets-${PV}
35 install -m 0644 catalog ${D}${datadir}/sgml/docbook/dsssl-stylesheets-${PV}
36 cp -v -R * ${D}${datadir}/sgml/docbook/dsssl-stylesheets-${PV}
37
38 install -d ${D}${sysconfdir}/sgml
39 echo "CATALOG ${datadir}/sgml/docbook/dsssl-stylesheets-${PV}/catalog" > \
40 ${D}${sysconfdir}/sgml/dsssl-docbook-stylesheets.cat
41 echo "CATALOG ${datadir}/sgml/docbook/dsssl-stylesheets-${PV}/common/catalog" >> \
42 ${D}${sysconfdir}/sgml/dsssl-docbook-stylesheets.cat
43}
44
45docbook_dsssl_stylesheets_sstate_postinst () {
46 if [ "${BB_CURRENTTASK}" = "populate_sysroot" -o "${BB_CURRENTTASK}" = "populate_sysroot_setscene" ]
47 then
48 # Ensure that the catalog file sgml-docbook.cat is properly
49 # updated when the package is installed from sstate cache.
50 ${SYSROOT_DESTDIR}${bindir_crossscripts}/install-catalog-docbook-dsssl \
51 --add ${sysconfdir}/sgml/sgml-docbook.bak \
52 ${sysconfdir}/sgml/dsssl-docbook-stylesheets.cat
53 ${SYSROOT_DESTDIR}${bindir_crossscripts}/install-catalog-docbook-dsssl \
54 --add ${sysconfdir}/sgml/sgml-docbook.cat \
55 ${sysconfdir}/sgml/dsssl-docbook-stylesheets.cat
56 fi
57}
58
59docbook_dsssl_sysroot_preprocess () {
60 install -d ${SYSROOT_DESTDIR}${bindir_crossscripts}/
61 install -m 755 ${STAGING_BINDIR_NATIVE}/install-catalog ${SYSROOT_DESTDIR}${bindir_crossscripts}/install-catalog-docbook-dsssl
62}
63
64docbook_dsssl_stylesheets_sstate_clean () {
65 # Ensure that the catalog file sgml-docbook.cat is properly
66 # updated when the package is removed from sstate cache.
67 files="${sysconfdir}/sgml/sgml-docbook.bak ${sysconfdir}/sgml/sgml-docbook.cat"
68 for f in $files; do
69 [ ! -f $f ] || sed -i '/\/sgml\/dsssl-docbook-stylesheets.cat/d' $f
70 done
71}