X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fpkg%2Fiptables;h=94bd6f1f2ec54e614ecbb7add6035a89ea175371;hb=1b6490195147ee6d1098cf255240d60f60c40108;hp=e6f05fd82b283d833ed74bd807fa51490ebc8c96;hpb=3dae4c554ec18f465eb6ee5e6efdbdbe8557e13c;p=hvlinux.git diff --git a/stage3/pkg/iptables b/stage3/pkg/iptables index e6f05fd..94bd6f1 100644 --- a/stage3/pkg/iptables +++ b/stage3/pkg/iptables @@ -1,22 +1,20 @@ -#!/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+=" \ + --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 +}