forked from pool/libnl3
Jan Engelhardt
df3f95c0c1
- remove python-devel dependency OBS-URL: https://build.opensuse.org/request/show/231432 OBS-URL: https://build.opensuse.org/package/show/security:netfilter/libnl3?expand=0&rev=55
155 lines
4.2 KiB
RPMSpec
155 lines
4.2 KiB
RPMSpec
#
|
|
# spec file for package libnl3
|
|
#
|
|
# Copyright (c) 2014 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.24
|
|
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: libnl-%version.tar.xz
|
|
Source2: baselibs.conf
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: bison
|
|
BuildRequires: flex >= 2.5.19
|
|
BuildRequires: pkgconfig >= 0.21
|
|
# Only used if python/ subdir would be built, which is not and
|
|
# is marked as
|
|
# "NOTE: The python wrapper is experimental and may or may not work."
|
|
# BuildRequires: python-devel >= 2.6
|
|
BuildRequires: xz
|
|
%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
|
|
%if 0%{?__xz:1}
|
|
%setup -qn libnl-%version
|
|
%else
|
|
tar -xf "%{S:0}" --use=xz;
|
|
%setup -DTqn libnl-%version
|
|
%endif
|
|
|
|
%build
|
|
%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 0%{?fdupes: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
|