X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fpkg%2Fiptables;h=38b8ea7720b8a640a56411efb782beb54ffccbba;hb=e7af14234a490713f91b3efbea721681bd4d0c1b;hp=e6f05fd82b283d833ed74bd807fa51490ebc8c96;hpb=3dae4c554ec18f465eb6ee5e6efdbdbe8557e13c;p=hvlinux.git diff --git a/stage3/pkg/iptables b/stage3/pkg/iptables index e6f05fd..38b8ea7 100644 --- a/stage3/pkg/iptables +++ b/stage3/pkg/iptables @@ -1,22 +1,21 @@ -#!/bin/sh -# First argument of this script is the package name +#!/bin/bash -# Reading system configuration informations, functions and package versions. -source ../sysinfos -source ../functions -source ../packages-list +hvconfig_pre() +{ + CONFIGURE_OPTS="\ + ${CONFIGURE_OPTS} \ + --bindir=/sbin \ + --sbindir=/sbin \ + --libdir=/lib \ + --libexecdir=/lib \ + --with-pkgconfigdir=/usr/lib/pkgconfig" +} -# Applying patches (if any) -apply_patches ${1} +hvbuild_post() +{ + # Firewall boot script + install -v -m740 ${SCRDIR}/bootscripts/firewall /etc/rc.d/init.d -cd ${LFS_TMP}/${1} -make PREFIX=/usr -make PREFIX=/usr install - -# Firewall boot script -install -v -m740 ${SCRDIR}/bootscripts/firewall /etc/rc.d/init.d - -# script-name start stop -bootscript_add_rc3 firewall 35 55 - -exit $? + # script-name start stop + bootscript_add_rc3 firewall 35 55 +}