SHA256
1
0
forked from pool/libnl3
libnl-3/libnl3.spec

150 lines
4.1 KiB
RPMSpec

#
# spec file for package libnl3
#
# Copyright (c) 2013 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/
#
Name: libnl3
%define lname libnl3-200
%define with_tools 1
Version: 3.2.22
Release: 0
Summary: Convenience library for working with Netlink sockets
License: LGPL-2.1 and GPL-2.0
Group: Development/Libraries/C and C++
Url: http://www.carisma.slowglass.com/~tgr/libnl/
#Git-Clone: git://git.infradead.org/users/tgr/libnl
#Git-Clone: git://github.com/tgraf/libnl
#DL-URL: http://www.carisma.slowglass.com/~tgr/libnl/files/
Source: http://www.carisma.slowglass.com/~tgr/libnl/files/libnl-3.2.22.tar.gz
Source2: baselibs.conf
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: bison
BuildRequires: flex >= 2.5.19
BuildRequires: libtool
BuildRequires: pkgconfig >= 0.21
BuildRequires: python-devel >= 2.6
%if 0%{?suse_version}
BuildRequires: fdupes
%endif
%description
The libnl suite is a collection of libraries providing APIs to
Netlink protocol based Linux kernel interfaces.
%package -n %lname
Summary: Convenience library for working with Netlink sockets
License: LGPL-2.1
Group: System/Libraries
Requires: libnl-config >= %version
%description -n %lname
The libnl suite is a collection of libraries providing APIs to
netlink protocol based Linux kernel interfaces.
%package devel
Summary: Libraries and headers for libnl
License: LGPL-2.1
Group: Development/Libraries/C and C++
Requires: %lname = %version
Provides: libnl-devel = %version-%release
# Starting with libnl3(-3.2), no more conflicts
%description devel
The libnl suite is a collection of libraries providing APIs to
Netlink protocol based Linux kernel interfaces.
%if %with_tools
#
# Only one of the libnl packages should create the config and tools.
#
%package -n libnl-config
Summary: Name maps for libnl
License: LGPL-2.1 and GPL-2.0
Group: Productivity/Networking/Security
%if 0%{?suse_version} >= 1130
BuildArch: noarch
%endif
%description -n libnl-config
This package contains configuration files for libnl and programs using
the same; in particular
- name maps for class-ids -- class-names (like /etc/services)
- aliases for locations within a packet (ip6.dst => byte offset)
%package -n libnl-tools
Summary: Command line utilities to directly work with Netlink
License: GPL-2.0
Group: Productivity/Networking/Security
%description -n libnl-tools
Various test program with which the functionality of libnl is
demonstrated.
%endif
%prep
%setup -qn libnl-%version
%build
autoreconf -fi;
%configure --disable-static
make %{?_smp_mflags} pkglibdir="%_libdir/%lname"
%install
b="%buildroot";
make install DESTDIR="%buildroot" pkglibdir="%_libdir/%lname";
find "$b" -iname "*.la" -delete;
%if !%with_tools
rm -Rf "$b/%_sysconfdir/libnl";
rm -Rf "$b/%_sbindir" "$b/%_mandir/man8";
%endif
%if "%{?fudes:1}"
%fdupes %buildroot/%_prefix
%endif
%post -n %lname -p /sbin/ldconfig
%postun -n %lname -p /sbin/ldconfig
%files -n %lname
%defattr(-,root,root)
%_libdir/libnl*.so.200*
%_libdir/%lname
%files devel
%defattr(-,root,root)
%_includedir/%name
%_libdir/libnl*.so
%_libdir/pkgconfig/*
%if %with_tools
%files -n libnl-config
%defattr(-,root,root)
%dir %_sysconfdir/libnl
%config %_sysconfdir/libnl/*
%files -n libnl-tools
%defattr(-,root,root)
%_mandir/man*/*
%_sbindir/*
%endif
%changelog