wok rev 25131

updated ebtables (2.0.10-4 -> 2.0.11)
author Hans-G?nter Theisgen
date Wed Jun 29 07:20:53 2022 +0100 (22 months ago)
parents 999b2a415099
children 96f6808d6c09
files ebtables/description.txt ebtables/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ebtables/description.txt	Wed Jun 29 07:20:53 2022 +0100
     1.3 @@ -0,0 +1,14 @@
     1.4 +The ebtables program is a filtering tool for a Linux-based bridging firewall.
     1.5 +It enables transparent filtering of network traffic passing through a
     1.6 +Linux bridge.
     1.7 +The filtering possibilities are limited to link layer filtering and some
     1.8 +basic filtering on higher network layers. Advanced logging, MAC DNAT/SNAT
     1.9 +and brouter facilities are also included.
    1.10 +
    1.11 +The ebtables tool can be combined with the other Linux filtering tools
    1.12 +(iptables, ip6tables and arptables) to make a bridging firewall that is also
    1.13 +capable of filtering these higher network layers. This is enabled through
    1.14 +the bridge-netfilter architecture which is a part of the standard Linux kernel.
    1.15 +
    1.16 +The ebtables and arptables codebase is maintained by the netfilter developers,
    1.17 +who were so kind to take over maintenance of the software.
     2.1 --- a/ebtables/receipt	Wed Jun 29 07:04:49 2022 +0100
     2.2 +++ b/ebtables/receipt	Wed Jun 29 07:20:53 2022 +0100
     2.3 @@ -1,15 +1,18 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="ebtables"
     2.7 -VERSION="v2.0.10-4"
     2.8 +VERSION="2.0.11"
     2.9  CATEGORY="network"
    2.10 +TAGS="firewall"
    2.11  SHORT_DESC="Filtering tool for a Linux-based bridging firewall."
    2.12  MAINTAINER="pascal.bellard@slitaz.org"
    2.13  LICENSE="GPL2"
    2.14 +WEB_SITE="https://netfilter.org/"
    2.15 +
    2.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.17 -WEB_SITE="https://netfilter.org/"
    2.18 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.19 -TAGS="firewall"
    2.20 +WGET_URL="http://ftp.netfilter.org/pub/$PACKAGE/$TARBALL"
    2.21 +
    2.22 +BUILD_DEPENDS="autoconf automake libtool"
    2.23  
    2.24  # What is the latest version available today?
    2.25  current_version()
    2.26 @@ -22,19 +25,23 @@
    2.27  # Rules to configure and make the package.
    2.28  compile_rules()
    2.29  {
    2.30 -	sed -i 's|uname -m|echo i486|' Makefile
    2.31 -	sed -i 's/), ret = 0/), ret = ret - ret/' communication.c
    2.32 -	mkdir -p $DESTDIR/etc/rc.d/init.d/ $DESTDIR/etc/sysconfig/
    2.33 -	make && make DESTDIR=$DESTDIR -j1 install
    2.34 +	./autogen.sh &&
    2.35 +	./configure			\
    2.36 +		--prefix=/usr		\
    2.37 +		--sysconfdir=/etc	\
    2.38 +		$CONFIGURE_ARGS &&
    2.39 +	make &&
    2.40 +	make install DESTDIR=$DESTDIR
    2.41  }
    2.42  
    2.43  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.44  genpkg_rules()
    2.45  {
    2.46 -	mkdir -p $fs/usr $fs/etc
    2.47 -	cp -a $install/etc/ethertypes $fs/etc
    2.48 -	cp -a $install/etc/sysconfig $fs/etc
    2.49 -	cp -a $install/usr/local/sbin $fs/usr
    2.50 -	cp -a $install/usr/lib $fs/usr
    2.51 +	mkdir -p $fs/usr
    2.52 +	mkdir -p $fs/etc
    2.53 +
    2.54 +	cp -a $install/etc/ethertypes	$fs/etc
    2.55 +	cp -a $install/etc/sysconfig	$fs/etc
    2.56 +	cp -a $install/usr/sbin		$fs/usr
    2.57 +	cp -a $install/usr/lib		$fs/usr
    2.58  }
    2.59 -