wok-current rev 24674
updated iptables and iptables-dev (1.8.4 -> 1.8.7)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Mar 12 07:43:48 2022 +0100 (2022-03-12) |
parents | ecd613707114 |
children | 09793607947c |
files | iptables-dev/receipt iptables/description.txt iptables/receipt |
line diff
1.1 --- a/iptables-dev/receipt Fri Mar 11 17:20:09 2022 +0000 1.2 +++ b/iptables-dev/receipt Sat Mar 12 07:43:48 2022 +0100 1.3 @@ -1,12 +1,12 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="iptables-dev" 1.7 -VERSION="1.8.4" 1.8 +VERSION="1.8.7" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Packet filtering framework (Firewall) - development files." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 LICENSE="GPL2" 1.13 -WEB_SITE="http://www.netfilter.org/" 1.14 +WEB_SITE="https://www.netfilter.org/projects/iptables/" 1.15 1.16 DEPENDS="iptables pkg-config" 1.17 WANTED="iptables" 1.18 @@ -16,9 +16,7 @@ 1.19 { 1.20 EXTRAVERSION=_${kvers} 1.21 1.22 - mkdir -p $fs/usr/lib 1.23 - 1.24 - cp -a $install/usr/include $fs/usr 1.25 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.26 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.27 + cook_copy_folders include 1.28 + cook_copy_folders pkgconfig 1.29 + cook_copy_files *.*a 1.30 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/iptables/description.txt Sat Mar 12 07:43:48 2022 +0100 2.3 @@ -0,0 +1,9 @@ 2.4 +Iptables is the userspace command line program used to configure 2.5 +the Linux 2.4.x and later packet filtering ruleset. 2.6 +It is targeted towards system administrators. 2.7 + 2.8 +Since Network Address Translation is also configured from the packet 2.9 +filter ruleset, iptables is used for this, too. 2.10 + 2.11 +The iptables package also includes ip6tables. ip6tables is used for 2.12 +configuring the IPv6 packet filter.
3.1 --- a/iptables/receipt Fri Mar 11 17:20:09 2022 +0000 3.2 +++ b/iptables/receipt Sat Mar 12 07:43:48 2022 +0100 3.3 @@ -1,16 +1,16 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="iptables" 3.7 -VERSION="1.8.4" 3.8 +VERSION="1.8.7" 3.9 CATEGORY="security" 3.10 TAGS="firewall" 3.11 SHORT_DESC="Packet filtering framework (Firewall)." 3.12 MAINTAINER="pankso@slitaz.org" 3.13 LICENSE="GPL2" 3.14 -WEB_SITE="http://www.netfilter.org/" 3.15 +WEB_SITE="https://www.netfilter.org/projects/iptables/" 3.16 3.17 TARBALL="$PACKAGE-$VERSION.tar.bz2" 3.18 -WGET_URL="http://www.netfilter.org/projects/iptables/files/$TARBALL" 3.19 +WGET_URL="${WEB_SITE}files/$TARBALL" 3.20 3.21 DEPENDS="linux-netfilter" 3.22 BUILD_DEPENDS="libmnl-dev linux-module-headers" 3.23 @@ -35,7 +35,7 @@ 3.24 --disable-nftables \ 3.25 $CONFIGURE_ARGS && 3.26 make && 3.27 - make DESTDIR=$DESTDIR install 3.28 + make install DESTDIR=$DESTDIR 3.29 } 3.30 3.31 # Rules to gen a SliTaz package suitable for Tazpkg. 3.32 @@ -45,7 +45,7 @@ 3.33 3.34 mkdir -p $fs/usr/lib 3.35 3.36 - cp -a $install/usr/sbin $fs/usr 3.37 - cp -a $install/usr/lib/lib* $fs/usr/lib 3.38 - cp -a $install/usr/lib/xtables $fs/usr/lib 3.39 + cp -a $install/usr/sbin $fs/usr 3.40 + cp -a $install/usr/lib/lib* $fs/usr/lib 3.41 + cp -a $install/usr/lib/xtables $fs/usr/lib 3.42 }