Fini la conversion du stage3 (nouveau format répertoire pkg)
[hvlinux.git] / stage3 / pkg / iptables
index e6f05fd..38b8ea7 100644 (file)
@@ -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
+}