44db8cc164
Copy from Base:System/linux-atm based on submit request 22204 from user msmeissn OBS-URL: https://build.opensuse.org/request/show/22204 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/linux-atm?expand=0&rev=7
121 lines
3.0 KiB
RPMSpec
121 lines
3.0 KiB
RPMSpec
#
|
|
# spec file for package linux-atm (Version 2.5.0)
|
|
#
|
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
# norootforbuild
|
|
|
|
|
|
Name: linux-atm
|
|
BuildRequires: bison flex glibc-devel
|
|
Url: http://sourceforge.net/projects/linux-atm/
|
|
License: BSD 3-clause (or similar) ; GPL v2 or later ; LGPL v2.1 or later
|
|
Group: Productivity/Networking/Other
|
|
Summary: Tools for ATM
|
|
Version: 2.5.0
|
|
Release: 137
|
|
Source0: linux-atm-%{version}.tar.bz2
|
|
Patch0: linux-atm-%{version}.diff
|
|
Patch1: linux-atm-2.5.0-include.patch
|
|
Patch2: linux-atm-2.5.0-fdleak.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Tools to support ATM (Asynchronous Transfer Mode) networking.
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
Werner Almesberger, EPFL ICA <wa@almesberger.net>
|
|
Mitchell Blank Jr., <mitch@sfgoth.com>
|
|
Paul B. Schroeder, <paulsch@us.ibm.com>
|
|
|
|
%package lib
|
|
License: BSD 3-clause (or similar) ; GPL v2 or later ; LGPL v2.1 or later
|
|
Group: System/Libraries
|
|
Summary: Libraries for ATM
|
|
|
|
%description lib
|
|
Libraries for ATM (Asynchronous Transfer Mode) networking.
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
Werner Almesberger, EPFL ICA <wa@almesberger.net>
|
|
Mitchell Blank Jr., <mitch@sfgoth.com>
|
|
Paul B. Schroeder, <paulsch@us.ibm.com>
|
|
|
|
%package devel
|
|
License: BSD 3-clause (or similar) ; GPL v2 or later ; LGPL v2.1 or later
|
|
Group: Development/Libraries/C and C++
|
|
Summary: Development for ATM
|
|
Requires: linux-atm-lib = %version
|
|
|
|
%description devel
|
|
Libraries and header files for ATM (Asynchronous Transfer Mode)
|
|
networking.
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
Werner Almesberger, EPFL ICA <wa@almesberger.net>
|
|
Mitchell Blank Jr., <mitch@sfgoth.com>
|
|
Paul B. Schroeder, <paulsch@us.ibm.com>
|
|
|
|
%prep
|
|
%setup -q -n linux-atm-%{version}
|
|
%patch0
|
|
%patch1 -p1
|
|
%patch2
|
|
|
|
%build
|
|
%{?suse_update_config}
|
|
%configure --disable-static
|
|
%{__make} %{?jobs:-j%jobs}
|
|
|
|
%install
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
%{__rm} -rf %{buildroot}%{_libdir}/*.la
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%post lib -p /sbin/ldconfig
|
|
|
|
%postun lib -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%config(noreplace) /etc/atmsigd.conf
|
|
/usr/bin/*
|
|
/usr/sbin/*
|
|
%doc README AUTHORS ChangeLog NEWS THANKS BUGS
|
|
%doc COPYING COPYING.GPL COPYING.LGPL
|
|
%doc %{_mandir}/man*/*.gz
|
|
|
|
%files lib
|
|
%defattr(-,root,root)
|
|
%{_libdir}/*.so
|
|
%{_libdir}/*.so.*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{_includedir}/*
|
|
|
|
%changelog
|