#!/bin/bash hvbuild() { cd ${LFS_TMP}/${PACKAGE} sed -i -e '/ISO 8879/d' \ -e '/gml/d' docbook.cat install -d /usr/share/sgml/docbook/sgml-dtd-${SGML_DTD4_VER} chown -R root:root . install docbook.cat \ /usr/share/sgml/docbook/sgml-dtd-${SGML_DTD4_VER}/catalog cp -af *.dtd *.mod *.dcl /usr/share/sgml/docbook/sgml-dtd-${SGML_DTD4_VER} install-catalog --add /etc/sgml/sgml-docbook-dtd-${SGML_DTD4_VER}.cat \ /usr/share/sgml/docbook/sgml-dtd-${SGML_DTD4_VER}/catalog install-catalog --add /etc/sgml/sgml-docbook-dtd-${SGML_DTD4_VER}.cat \ /etc/sgml/sgml-docbook.cat # Using only the most current 4.x version of sgml-dtd requires the # following: cat >> /usr/share/sgml/docbook/sgml-dtd-${SGML_DTD4_VER}/catalog << "EOF" -- Begin Single Major Version catalog changes -- PUBLIC "-//OASIS//DTD DocBook V4.3//EN" "docbook.dtd" PUBLIC "-//OASIS//DTD DocBook V4.2//EN" "docbook.dtd" PUBLIC "-//OASIS//DTD DocBook V4.1//EN" "docbook.dtd" PUBLIC "-//OASIS//DTD DocBook V4.0//EN" "docbook.dtd" -- End Single Major Version catalog changes -- EOF }