diff options
Diffstat (limited to 'meta/recipes-devtools/docbook-dsssl-stylesheets/docbook-dsssl-stylesheets-native_1.79.bb')
-rw-r--r-- | meta/recipes-devtools/docbook-dsssl-stylesheets/docbook-dsssl-stylesheets-native_1.79.bb | 71 |
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 @@ | |||
1 | SUMMARY = "DSSSL stylesheets used to transform SGML and XML DocBook files" | ||
2 | HOMEPAGE = "http://docbook.sourceforge.net" | ||
3 | # Simple persmissive | ||
4 | LICENSE = "DSSSL" | ||
5 | LIC_FILES_CHKSUM = "file://README;beginline=41;endline=74;md5=875385159b2ee76ecf56136ae7f542d6" | ||
6 | |||
7 | DEPENDS = "sgml-common-native" | ||
8 | |||
9 | PR = "r4" | ||
10 | |||
11 | SRC_URI = "${SOURCEFORGE_MIRROR}/docbook/docbook-dsssl-${PV}.tar.bz2" | ||
12 | |||
13 | SRC_URI[md5sum] = "bc192d23266b9a664ca0aba4a7794c7c" | ||
14 | SRC_URI[sha256sum] = "2f329e120bee9ef42fbdd74ddd60e05e49786c5a7953a0ff4c680ae6bdf0e2bc" | ||
15 | |||
16 | UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/docbook/files/docbook-dsssl/" | ||
17 | UPSTREAM_CHECK_REGEX = "/docbook-dsssl/(?P<pver>(\d+[\.\-_]*)+)/" | ||
18 | |||
19 | S = "${WORKDIR}/docbook-dsssl-${PV}" | ||
20 | |||
21 | inherit native | ||
22 | |||
23 | SSTATEPOSTINSTFUNCS += "docbook_dsssl_stylesheets_sstate_postinst" | ||
24 | SYSROOT_PREPROCESS_FUNCS += "docbook_dsssl_sysroot_preprocess" | ||
25 | CLEANFUNCS += "docbook_dsssl_stylesheets_sstate_clean" | ||
26 | |||
27 | |||
28 | do_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 | |||
45 | docbook_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 | |||
59 | docbook_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 | |||
64 | docbook_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 | } | ||