X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fpkg%2Fdocbook-utils;h=158bcfb7721391c855c25e004e2d4c9c7da7c6ec;hb=1b6490195147ee6d1098cf255240d60f60c40108;hp=46636ecc7290673c33fd114077adb173ef2abf16;hpb=3dae4c554ec18f465eb6ee5e6efdbdbe8557e13c;p=hvlinux.git diff --git a/stage3/pkg/docbook-utils b/stage3/pkg/docbook-utils index 46636ec..158bcfb 100644 --- a/stage3/pkg/docbook-utils +++ b/stage3/pkg/docbook-utils @@ -1,25 +1,13 @@ -#!/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 's:/html::' doc/HTML/Makefile.in -./configure \ - --prefix=/usr -make -make install - -for doctype in html ps dvi man pdf rtf tex texi txt; do - ln -sf docbook2$doctype /usr/bin/db2$doctype -done - -exit $? +#!/bin/bash + +hvconfig_pre() +{ + sed -i 's:/html::' ${SRC_DIR}/doc/HTML/Makefile.in +} + +hvbuild_post() +{ + for doctype in html ps dvi man pdf rtf tex texi txt; do + ln -sf docbook2$doctype /usr/bin/db2$doctype + done +}