source: projects/specs/branches/6/b/bridge-utils/bridge-utils-vl.spec @ 521

Revision 521, 2.7 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary: Utilities for configuring the linux ethernet bridge.
2Summary(ja): イーサネットブリッジ設定ユーティリティ
3Name: bridge-utils
4Version: 1.0.6
5Release: 2%{?_dist_release}
6License: GPL
7URL: http://bridge.sourceforge.net/
8Group: Applications/System
9Source0: http://bridge.sourceforge.net/bridge-utils/bridge-utils-%{version}.tar.gz
10Patch0: bridge-utils-1.0.4-inc.patch
11Patch1: bridge-utils-1.0.4-kernheaders.patch
12BuildRoot: %{_tmppath}/%{name}-%{version}-root
13#BuildRequires: sysfsutils-devel
14
15%description
16This package contains utilities for configuring the linux ethernet
17bridge. The linux ethernet bridge can be used for connecting multiple
18ethernet devices together. The connecting is fully transparent: hosts
19connected to one ethernet device see hosts connected to the other
20ethernet devices directly.
21
22Install bridge-utils if you want to use the linux ethernet bridge.
23
24%package -n bridge-utils-devel
25Summary: Header and object files for using bridge-utils
26Group: Development/Libraries
27
28%description -n bridge-utils-devel
29The bridge-utils-devel package contains the header and object files
30necessary for developing programs which use 'libbridge.a', the
31interface to the linux kernel ethernet bridge. If you are developing
32programs which need to configure the linux ethernet bridge, your
33system needs to have these standard header and object files available
34in order to create the executables.
35
36Install bridge-utils-devel if you are going to develop programs which
37will use the linux ethernet bridge interface library.
38
39%prep
40%setup -q
41
42%patch0 -p1
43%patch1 -p1
44
45%build
46%configure --with-linux-headers=`pwd`
47make
48
49%install
50make DESTDIR=${RPM_BUILD_ROOT} install
51#gzip ${RPM_BUILD_ROOT}/%{_mandir}/man8/brctl.8
52
53%clean
54[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
55
56%files
57%defattr (-,root,root)
58%doc AUTHORS COPYING doc/FAQ doc/HOWTO doc/RPM-GPG-KEY
59%{_sbindir}/brctl
60%{_mandir}/man8/*
61
62%files -n bridge-utils-devel
63%defattr (-,root,root)
64%{_includedir}/libbridge.h
65%{_libdir}/libbridge.a
66
67%changelog
68* Mon Jun 22 2009 Shu KONNO <owa@bg.wakwak.com> 1.0.6-2
69- spec in utf-8
70
71* Fri Sep 19 2008 Shu KONNO <owa@bg.wakwak.com> 1.0.6-1vl5
72- applied new versioning policy, spec in utf-8
73
74* Mon Mar 28 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.6-0vl1
75- new upsteam release based Fedora
76  * Thu Aug 26 2004 David Woodhouse <dwmw2@redhat.com> 1.0.4-4
77  - BuildRequires: sysfsutils-devel to make the horrid autoconf script
78    magically change the entire package's behaviour just because it
79    happens to find slightly different header files lying around.
80  - Include our own kernel-derived headers
81  * Thu Jul 1 2004 David Woodhouse <dwmw2@redhat.com>
82  - Update to 1.0.4
83- s/Copyright/License/
84
85* Sat Oct 27 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.3-1vl1
86- initial release
Note: See TracBrowser for help on using the repository browser.