diff options
| author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-09-30 12:52:25 +0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-28 16:15:19 +0100 |
| commit | 671780de49f93ec1cc28f5ad2a7eebe211918b85 (patch) | |
| tree | 42ebe78d73a3f0a0fa49fb83ff1f2e557c9dc505 /meta/recipes-devtools/docbook-utils | |
| parent | d95ef2a0aa3116783cd01a905b46fc4920ebae9f (diff) | |
| download | poky-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-utils')
| -rw-r--r-- | meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch | 29 | ||||
| -rw-r--r-- | meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb | 63 |
2 files changed, 0 insertions, 92 deletions
diff --git a/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch b/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch deleted file mode 100644 index db079d68fd..0000000000 --- a/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch +++ /dev/null | |||
| @@ -1,29 +0,0 @@ | |||
| 1 | Upstream-Status: Pending | ||
| 2 | |||
| 3 | Fix runtime error occurred e.g. with docbook-to-man calls: | ||
| 4 | |||
| 5 | grep: character class syntax is [[:space:]], not [:space:] | ||
| 6 | grep: character class syntax is [[:space:]], not [:space:] | ||
| 7 | jw: There is no frontend called "/docbook/utils-0.6.14/frontends/docbook". | ||
| 8 | |||
| 9 | See also: | ||
| 10 | |||
| 11 | <https://qa.mandriva.com/show_bug.cgi?id=61127> | ||
| 12 | |||
| 13 | Signed-off-by: Steffen Sledz <sledz@dresearch-fe.de> | ||
| 14 | |||
| 15 | diff -Nurd docbook-utils-0.6.14-orig/bin/jw.in docbook-utils-0.6.14/bin/jw.in | ||
| 16 | --- docbook-utils-0.6.14-orig/bin/jw.in 2012-03-29 07:50:00.789564826 +0200 | ||
| 17 | +++ docbook-utils-0.6.14/bin/jw.in 2012-03-29 07:52:10.371302967 +0200 | ||
| 18 | @@ -80,9 +80,9 @@ | ||
| 19 | SGML_CATALOGS_DIR="/etc/sgml" | ||
| 20 | if [ -f "$SGML_CONF" ] | ||
| 21 | then | ||
| 22 | - RE='^[:space:]*SGML_BASE_DIR[:space:]*=[:space:]*' | ||
| 23 | + RE='^[[:space:]]*SGML_BASE_DIR[[:space:]]*=[[:space:]]*' | ||
| 24 | SGML_BASE_DIR=`grep $RE $SGML_CONF | sed "s/$RE//"` | ||
| 25 | - RE='^[:space:]*SGML_CATALOGS_DIR[:space:]*=[:space:]*' | ||
| 26 | + RE='^[[:space:]]*SGML_CATALOGS_DIR[[:space:]]*=[[:space:]]*' | ||
| 27 | SGML_CATALOGS_DIR=`grep $RE $SGML_CONF | sed "s/$RE//"` | ||
| 28 | fi | ||
| 29 | |||
diff --git a/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb b/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb deleted file mode 100644 index c3a5f3b421..0000000000 --- a/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb +++ /dev/null | |||
| @@ -1,63 +0,0 @@ | |||
| 1 | SUMMARY = "Utilities for formatting and manipulating DocBook documents" | ||
| 2 | DESCRIPTION = "A collection of all the free software tools you need to \ | ||
| 3 | work on and format DocBook documents." | ||
| 4 | HOMEPAGE = "http://sources.redhat.com/docbook-tools/" | ||
| 5 | SECTION = "console/utils" | ||
| 6 | LICENSE = "GPLv2" | ||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
| 8 | DEPENDS = "openjade-native sgmlspl-native docbook-dsssl-stylesheets-native docbook-sgml-dtd-3.1-native" | ||
| 9 | |||
| 10 | PR = "r3" | ||
| 11 | |||
| 12 | SRC_URI = "\ | ||
| 13 | ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES/docbook-utils-${PV}.tar.gz \ | ||
| 14 | file://re.patch \ | ||
| 15 | " | ||
| 16 | |||
| 17 | SRC_URI[md5sum] = "6b41b18c365c01f225bc417cf632d81c" | ||
| 18 | SRC_URI[sha256sum] = "48faab8ee8a7605c9342fb7b906e0815e3cee84a489182af38e8f7c0df2e92e9" | ||
| 19 | |||
| 20 | inherit autotools native | ||
| 21 | |||
| 22 | do_configure_prepend() { | ||
| 23 | # Fix hard-coded references to /etc/sgml | ||
| 24 | if [ ! -e ${S}/.sed_done ]; then | ||
| 25 | sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" ${S}/bin/jw.in | ||
| 26 | sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" ${S}/doc/man/Makefile.am | ||
| 27 | sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" ${S}/doc/HTML/Makefile.am | ||
| 28 | |||
| 29 | # Point jw to the native sysroot catalog | ||
| 30 | sed -i -e 's|^SGML_EXTRA_CATALOGS=""|SGML_EXTRA_CATALOGS=":${sysconfdir}/sgml/catalog"|g' ${S}/bin/jw.in | ||
| 31 | touch ${S}/.sed_done | ||
| 32 | fi | ||
| 33 | } | ||
| 34 | do_unpack[cleandirs] += "${S}" | ||
| 35 | |||
| 36 | do_install() { | ||
| 37 | install -d ${D}${bindir} | ||
| 38 | # Install the binaries and a bunch of other commonly used names for them. | ||
| 39 | for doctype in html ps dvi man pdf rtf tex texi txt | ||
| 40 | do | ||
| 41 | install -m 0755 ${S}/bin/docbook2$doctype ${D}${bindir}/ | ||
| 42 | ln -sf docbook2x-$doctype ${D}${bindir}/db2$doctype | ||
| 43 | ln -sf docbook2$doctype ${D}${bindir}/db2$doctype | ||
| 44 | ln -sf docbook2$doctype ${D}${bindir}/docbook-to-$doctype | ||
| 45 | done | ||
| 46 | |||
| 47 | install -m 0755 ${B}/bin/jw ${D}${bindir}/ | ||
| 48 | for i in backends/dvi backends/html \ | ||
| 49 | backends/pdf backends/ps backends/rtf backends/tex \ | ||
| 50 | backends/txt \ | ||
| 51 | helpers/docbook2man-spec.pl helpers/docbook2texi-spec.pl \ | ||
| 52 | docbook-utils.dsl | ||
| 53 | do | ||
| 54 | install -d ${D}${datadir}/sgml/docbook/utils-${PV}/`dirname $i` | ||
| 55 | install ${S}/$i ${D}${datadir}/sgml/docbook/utils-${PV}/$i | ||
| 56 | done | ||
| 57 | for i in backends/man backends/texi frontends/docbook | ||
| 58 | do | ||
| 59 | install -d ${D}${datadir}/sgml/docbook/utils-${PV}/`dirname $i` | ||
| 60 | install ${B}/$i ${D}${datadir}/sgml/docbook/utils-${PV}/$i | ||
| 61 | done | ||
| 62 | |||
| 63 | } | ||
