blob: 53e9865e1b15b74ff3c82664865457a0f74be6e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
SUMMARY = "DSSSL stylesheets used to transform SGML and XML DocBook files"
DESCRIPTION = "DSSSL stylesheets used to transform SGML and XML DocBook files"
HOMEPAGE= "http://docbook.sourceforge.net"
# Simple persmissive
LICENSE = "DSSSL"
LIC_FILES_CHKSUM = "file://README;beginline=41;endline=74;md5=875385159b2ee76ecf56136ae7f542d6"
DEPENDS = "sgml-common-native"
PR = "r1"
SRC_URI = "${SOURCEFORGE_MIRROR}/docbook/docbook-dsssl-${PV}.tar.bz2"
SRC_URI[md5sum] = "bc192d23266b9a664ca0aba4a7794c7c"
SRC_URI[sha256sum] = "2f329e120bee9ef42fbdd74ddd60e05e49786c5a7953a0ff4c680ae6bdf0e2bc"
S = "${WORKDIR}/docbook-dsssl-${PV}"
inherit native
SYSROOT_PREPROCESS_FUNCS += "docbook_dssl_stylesheets_native_mangle"
do_install () {
# Refer to http://www.linuxfromscratch.org/blfs/view/stable/pst/docbook-dsssl.html
# for details.
install -d ${D}${bindir}
install -m 0755 bin/collateindex.pl ${D}${bindir}
install -d ${D}${datadir}/sgml/docbook/dsssl-stylesheets-${PV}
install -m 0644 catalog ${D}${datadir}/sgml/docbook/dsssl-stylesheets-${PV}
cp -v -R * ${D}${datadir}/sgml/docbook/dsssl-stylesheets-${PV}
install-catalog --add ${sysconfdir}/sgml/dsssl-docbook-stylesheets.cat \
${D}${datadir}/sgml/docbook/dsssl-stylesheets-${PV}/catalog
install-catalog --add ${sysconfdir}/sgml/dsssl-docbook-stylesheets.cat \
${D}${datadir}/sgml/docbook/dsssl-stylesheets-${PV}/common/catalog
install-catalog --add ${sysconfdir}/sgml/sgml-docbook.cat \
${sysconfdir}/sgml/dsssl-docbook-stylesheets.cat
# Move these to the image directory so they get staged properly.
install -d ${D}${sysconfdir}/sgml
cp ${sysconfdir}/sgml/dsssl-docbook-stylesheets.cat ${D}${sysconfdir}/sgml/
cp ${sysconfdir}/sgml/sgml-docbook.cat ${D}${sysconfdir}/sgml/
cp ${sysconfdir}/sgml/catalog ${D}${sysconfdir}/sgml/
}
docbook_dssl_stylesheets_native_mangle () {
# Remove the image directory path ${D} from the .cat file.
sed -i -e "s|${D}||g" ${SYSROOT_DESTDIR}${sysconfdir}/sgml/dsssl-docbook-stylesheets.cat
}
|