bridge-utils: dropped; deprecated for a while now, use iproute2's bridge support instead

This commit is contained in:
Matt Housh 2023-04-06 12:02:41 -05:00
parent ce2b2f5fe9
commit 8ed4f65f41
3 changed files with 0 additions and 39 deletions

View File

@ -1,7 +0,0 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/brctl
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/brctl.8.gz

View File

@ -1,5 +0,0 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF357Pc3cVVKFvLenTGX4Hex4hUr4qCvzinZJwz8AyuWJXH/9XuSGFA/uBD6yPt1+J9J+Bsy+zdsK/Xxl7lcZtEwE=
SHA256 (Pkgfile) = 48f00181ee2b1546844646aee2b2b84903dc7e3c0bad21695f77496fdbc288aa
SHA256 (.footprint) = 17197ce86e1ec11083ee1a9fcda95f253b2ff6f482bbb9427c07582ea12b06d9
SHA256 (bridge-utils-1.7.1.tar.xz) = a61d8be4f1a1405c60c8ef38d544f0c18c05b33b9b07e5b4b31033536165e60e

View File

@ -1,27 +0,0 @@
# Description: Linux IEEE 802.1d ethernet bridging utilities
# URL: https://www.linuxfoundation.org/collaborate/workgroups/networking/bridge
# Maintainer: Matt Housh, jaeger at crux dot ninja
name=bridge-utils
version=1.7.1
release=1
source=(https://mirrors.edge.kernel.org/pub/linux/utils/net/bridge-utils/$name-$version.tar.xz)
build() {
cd $name-$version
# make compilation fail instead of producing footprint mismatches
sed -i 's/ ; done/ || exit 1 &/g' Makefile.in
autoconf
./configure --prefix=/usr
# fix includes...
sed -i 's|\(#include <sys/socket.h>\)|\1\n#include <netinet/in.h>|1' \
libbridge/libbridge.h
sed -i -e 's|linux/if.h|net/if.h|1' -e '/if_bridge.h/d' libbridge/libbridge.h
sed -i '/KERNEL_HEADERS=/d' libbridge/Makefile
make
make DESTDIR=$PKG install
}