Revert "docbook-utils: fix build errors"

This reverts commit 3eef847054.

Signed-off-by: Saul Wold <sgw@linux.intel.com>
This commit is contained in:
Saul Wold 2011-02-03 16:06:51 -08:00
parent 51d7e314f8
commit 7c64981ba6
1 changed files with 0 additions and 30 deletions

View File

@ -17,34 +17,4 @@ SRC_URI[sha256sum] = "48faab8ee8a7605c9342fb7b906e0815e3cee84a489182af38e8f7c0df
inherit autotools
do_configure_prepend_virtclass-native() {
# Fix hard-coded references to /etc/sgml
sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" bin/jw.in
sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" doc/man/Makefile.am
sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" doc/HTML/Makefile.am
}
do_install_virtclass-native() {
install -d ${D}${bindir}
# Install the binaries and a bunch of other commonly used names for them.
for doctype in html ps dvi man pdf rtf tex texi txt
do
install -m 0755 ${S}/bin/docbook2$doctype ${D}${bindir}/
ln -sf docbook2x-$doctype ${D}${bindir}/db2$doctype
ln -sf docbook2$doctype ${D}${bindir}/db2$doctype
ln -sf docbook2$doctype ${D}${bindir}/docbook-to-$doctype
done
install -m 0755 ${S}/bin/jw ${D}${bindir}/
for i in backends/dvi backends/html backends/man \
backends/pdf backends/ps backends/rtf backends/tex \
backends/texi backends/txt frontends/docbook \
helpers/docbook2man-spec.pl helpers/docbook2texi-spec.pl \
docbook-utils.dsl
do
install -d ${D}${datadir}/sgml/docbook/utils-${PV}/`dirname $i`
install ${S}/$i ${D}${datadir}/sgml/docbook/utils-${PV}/$i
done
}
BBCLASSEXTEND = "native"