# HG changeset patch # User Hans-G?nter Theisgen # Date 1656483653 -3600 # Node ID ead40cecdb52265c72d67102b81d2f5eb0eaa855 # Parent 999b2a415099e6d6098711ac2208c8541e699213 updated ebtables (2.0.10-4 -> 2.0.11) diff -r 999b2a415099 -r ead40cecdb52 ebtables/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ebtables/description.txt Wed Jun 29 07:20:53 2022 +0100 @@ -0,0 +1,14 @@ +The ebtables program is a filtering tool for a Linux-based bridging firewall. +It enables transparent filtering of network traffic passing through a +Linux bridge. +The filtering possibilities are limited to link layer filtering and some +basic filtering on higher network layers. Advanced logging, MAC DNAT/SNAT +and brouter facilities are also included. + +The ebtables tool can be combined with the other Linux filtering tools +(iptables, ip6tables and arptables) to make a bridging firewall that is also +capable of filtering these higher network layers. This is enabled through +the bridge-netfilter architecture which is a part of the standard Linux kernel. + +The ebtables and arptables codebase is maintained by the netfilter developers, +who were so kind to take over maintenance of the software. diff -r 999b2a415099 -r ead40cecdb52 ebtables/receipt --- a/ebtables/receipt Wed Jun 29 07:04:49 2022 +0100 +++ b/ebtables/receipt Wed Jun 29 07:20:53 2022 +0100 @@ -1,15 +1,18 @@ # SliTaz package receipt. PACKAGE="ebtables" -VERSION="v2.0.10-4" +VERSION="2.0.11" CATEGORY="network" +TAGS="firewall" SHORT_DESC="Filtering tool for a Linux-based bridging firewall." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://netfilter.org/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://netfilter.org/" -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" -TAGS="firewall" +WGET_URL="http://ftp.netfilter.org/pub/$PACKAGE/$TARBALL" + +BUILD_DEPENDS="autoconf automake libtool" # What is the latest version available today? current_version() @@ -22,19 +25,23 @@ # Rules to configure and make the package. compile_rules() { - sed -i 's|uname -m|echo i486|' Makefile - sed -i 's/), ret = 0/), ret = ret - ret/' communication.c - mkdir -p $DESTDIR/etc/rc.d/init.d/ $DESTDIR/etc/sysconfig/ - make && make DESTDIR=$DESTDIR -j1 install + ./autogen.sh && + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + $CONFIGURE_ARGS && + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr $fs/etc - cp -a $install/etc/ethertypes $fs/etc - cp -a $install/etc/sysconfig $fs/etc - cp -a $install/usr/local/sbin $fs/usr - cp -a $install/usr/lib $fs/usr + mkdir -p $fs/usr + mkdir -p $fs/etc + + cp -a $install/etc/ethertypes $fs/etc + cp -a $install/etc/sysconfig $fs/etc + cp -a $install/usr/sbin $fs/usr + cp -a $install/usr/lib $fs/usr } -