1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- Summary: Utilities for configuring the linux ethernet bridge.
- Summary(ja): イーサネットブリッジ設定ユーティリティ
- Name: bridge-utils
- Version: 1.0.6
- Release: 2%{?_dist_release}
- License: GPL
- URL: http://bridge.sourceforge.net/
- Group: Applications/System
- Source0: http://bridge.sourceforge.net/bridge-utils/bridge-utils-%{version}.tar.gz
- Patch0: bridge-utils-1.0.4-inc.patch
- Patch1: bridge-utils-1.0.4-kernheaders.patch
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- %description
- This package contains utilities for configuring the linux ethernet
- bridge. The linux ethernet bridge can be used for connecting multiple
- ethernet devices together. The connecting is fully transparent: hosts
- connected to one ethernet device see hosts connected to the other
- ethernet devices directly.
- Install bridge-utils if you want to use the linux ethernet bridge.
- %package -n bridge-utils-devel
- Summary: Header and object files for using bridge-utils
- Group: Development/Libraries
- %description -n bridge-utils-devel
- The bridge-utils-devel package contains the header and object files
- necessary for developing programs which use 'libbridge.a', the
- interface to the linux kernel ethernet bridge. If you are developing
- programs which need to configure the linux ethernet bridge, your
- system needs to have these standard header and object files available
- in order to create the executables.
- Install bridge-utils-devel if you are going to develop programs which
- will use the linux ethernet bridge interface library.
- %prep
- %setup -q
- %patch0 -p1
- %patch1 -p1
- %build
- %configure
- make
- %install
- make DESTDIR=${RPM_BUILD_ROOT} install
- %clean
- [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
- %files
- %defattr (-,root,root)
- %doc AUTHORS COPYING doc/FAQ doc/HOWTO doc/RPM-GPG-KEY
- %{_sbindir}/brctl
- %{_mandir}/man8
|