aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nylon/simple-firewall.bb
blob: d9e6974480c9b6dba15537d9480778d2cae570bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
DESCRIPTION = "simple firewall configuratiopn script"
SECTION = "base"
PRIORITY = "optional"
MAINTAINER = "Bruno Randolf <br1@einfach.org>"
LICENSE = "GPL"
DEPENDS = "virtual/kernel"
# these kernel modules are needed if the functionality is not hard-built into the kernel:
# kernel-module-ip-tables kernel-module-iptable-filter kernel-module-iptable-nat kernel-module-ipt-state kernel-module-ipt-reject kernel-module-ipt-masquerade 
RDEPENDS = "kernel-module-ipt-limit kernel-module-ipt-tcpmss"
PV = "cvs20051022"

SRC_URI = "http://br1.einfach.org/nylon/stable/sources/simple-firewall_gruen.4g__20051022.tar.gz \
	file://simple-firewall-bash.diff;patch=1"
S = "${WORKDIR}/${PN}"

do_install() {
	(cd ${S}; tar -c --exclude .svn -f - . ) | tar -C ${D} -xpf -
}