bridge-utils: initial import, version 1.2

This commit is contained in:
Matt Housh 2006-11-07 09:29:05 -06:00
parent 9072b9adc5
commit 69b77cb146
3 changed files with 28 additions and 0 deletions

10
bridge-utils/.footprint Normal file
View File

@ -0,0 +1,10 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/libbridge.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libbridge.a
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/brctl.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/brctl

1
bridge-utils/.md5sum Normal file
View File

@ -0,0 +1 @@
1e6cff57ac90d7ab984d9512fdd9f2dd bridge-utils-1.2.tar.gz

17
bridge-utils/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: Linux IEEE 802.1d ethernet bridging utilities
# URL: http://linux-net.osdl.org/index.php/Bridge
# Maintainer: Matt Housh, jaeger at morpheus dot net
name=bridge-utils
version=1.2
release=1
source=(http://dl.sourceforge.net/sourceforge/bridge/$name-$version.tar.gz)
build() {
cd $name-$version
autoconf
./configure --prefix=/usr \
--mandir=/usr/man
make
make DESTDIR=$PKG install
}