X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fpkg%2Fsgml-dtd4;h=7114ba31dec0a4b37b99a42f5ab7d57499ec4ba4;hb=1b6490195147ee6d1098cf255240d60f60c40108;hp=192af58bc403a900fef19da4727128712324673d;hpb=3dae4c554ec18f465eb6ee5e6efdbdbe8557e13c;p=hvlinux.git diff --git a/stage3/pkg/sgml-dtd4 b/stage3/pkg/sgml-dtd4 index 192af58..7114ba3 100644 --- a/stage3/pkg/sgml-dtd4 +++ b/stage3/pkg/sgml-dtd4 @@ -1,30 +1,22 @@ -#!/bin/sh -set -o errexit - -# First argument of this script is the package name - -# Reading system configuration informations, functions and package versions. -source ../sysinfos -source ../functions -source ../packages-list - -# Applying patches (if any) -apply_patches ${1} - -cd ${LFS_TMP}/${1} -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" +#!/bin/bash + +hvbuild() +{ + sed -i -e '/ISO 8879/d' \ + -e '/gml/d' docbook.cat + install -v -d /usr/share/sgml/docbook/sgml-dtd-${SGML_DTD4_VER} + chown -R root:root . + install -v 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" @@ -34,5 +26,4 @@ PUBLIC "-//OASIS//DTD DocBook V4.0//EN" "docbook.dtd" -- End Single Major Version catalog changes -- EOF - -exit $? +}