# # spec file for package libnftnl # # 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: libnftnl %define lname libnftnl0 Version: 1.0.1 Release: 0 Summary: Userspace library to access the nftables Netlink interface License: GPL-2.0+ Group: Productivity/Networking/Security Url: http://netfilter.org/projects/libnftnl/ #Git-Clone: git://git.netfilter.org/libnftnl Source: http://netfilter.org/projects/libnftnl/files/%name-%version.tar.bz2 Source2: http://netfilter.org/projects/libnftnl/files/%name-%version.tar.bz2.sig Source3: baselibs.conf BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: libmnl-devel >= 1.0.3 BuildRequires: pkgconfig >= 0.21 BuildRequires: xz %if 0%{?suse_version} >= 1220 %define with_json 1 %define with_mxml 1 %endif %if 0%{?fedora_version} %define with_json 1 %endif %if 0%{?with_json} BuildRequires: pkgconfig(jansson) >= 2.3 %endif %if 0%{?with_mxml} BuildRequires: pkgconfig(mxml) >= 2.6 %endif %description libnftnl is a userspace library providing a low-level netlink programming interface (API) to the in-kernel nf_tables subsystem. %package -n %lname Summary: Userspace library to access the nftables Netlink interface Group: System/Libraries %description -n %lname libnftnl is a userspace library providing a low-level netlink programming interface (API) to the in-kernel nf_tables subsystem. %package devel Requires: %lname = %version Summary: Development files to libnftnl Group: Development/Libraries/C and C++ %description devel libnftnl is a userspace library providing a low-level netlink programming interface (API) to the in-kernel nf_tables subsystem. This subpackage contains libraries and header files for developing applications that want to make use of libnftnl. %prep %setup -q %build %configure \ %if 0%{?with_mxml} --with-xml-parsing \ %endif %if 0%{?with_json} --with-json-parsing \ %endif --includedir="%_includedir/pkg" make %{?_smp_mflags} %install make install DESTDIR="%buildroot"; rm -f "%buildroot/%_libdir"/*.la; %post -n %lname -p /sbin/ldconfig %postun -n %lname -p /sbin/ldconfig %files -n %lname %defattr(-,root,root) %_libdir/libnftnl.so.0* %files devel %defattr(-,root,root) %_includedir/pkg/ %_libdir/libnftnl.so %_libdir/pkgconfig/libnftnl.pc %doc COPYING %changelog