libnfnetlink/libnfnetlink.spec
OBS User autobuild 79097fc3d6 Accepting request 33603 from security:netfilter
Copy from security:netfilter/libnfnetlink based on submit request 33603 from user jengelh

OBS-URL: https://build.opensuse.org/request/show/33603
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libnfnetlink?expand=0&rev=1
2010-03-01 17:10:31 +00:00

114 lines
3.8 KiB
RPMSpec

#
# spec file for package libnfnetlink (Version 1.0.0+git1)
#
# Copyright (c) 2010 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
%define soname 0
Name: libnfnetlink
Version: 1.0.0+git1
Release: 1
License: GNU GPL v2
Group: Productivity/Networking/Security
Url: http://netfilter.org/projects/libnfnetlink/
#Source: http://netfilter.org/projects/libnfnetlink/files/%{name}-%{version}.tar.bz2
Source: %{name}-%{version}.tar.xz
Source2: baselibs.conf
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: linux-kernel-headers >= 2.6.14 xz
Summary: Low-Level Library for netfilter related Kernel/Userspace Communication
%description
libnfnetlink is the low-level library for netfilter related
kernel/userspace communication. It provides a generic messaging
infrastructure for in-kernel netfilter subsystems (such as
nfnetlink_log, nfnetlink_queue, nfnetlink_conntrack) and their
respective users and/or management tools in userspace.
This library is not meant as a public API for application developers.
It is only used by other netfilter.org projects, such as
libnetfilter_log, libnetfilter_queue or libnetfilter_conntrack.
%define debug_package_requires %{name}%{soname} = %{version}-%{release}
%package -n %{name}%{soname}
Group: System/Libraries
Summary: Low-Level Library for netfilter related Kernel/Userspace Communication
%description -n %{name}%{soname}
libnfnetlink is the low-level library for netfilter related
kernel/userspace communication. It provides a generic messaging
infrastructure for in-kernel netfilter subsystems (such as
nfnetlink_log, nfnetlink_queue, nfnetlink_conntrack) and their
respective users and/or management tools in userspace.
This library is not meant as a public API for application developers.
It is only used by other netfilter.org projects, such as
libnetfilter_log, libnetfilter_queue or libnetfilter_conntrack.
%package -n %{name}-devel
Group: Development/Libraries/C and C++
Requires: %{name}%{soname} = %{version}
Summary: Low-Level Library for netfilter related Kernel/Userspace Communication
%description -n %{name}-devel
libnfnetlink is the low-level library for netfilter related
kernel/userspace communication. It provides a generic messaging
infrastructure for in-kernel netfilter subsystems (such as
nfnetlink_log, nfnetlink_queue, nfnetlink_conntrack) and their
respective users and/or management tools in userspace.
This library is not meant as a public API for application developers.
It is only used by other netfilter.org projects, such as
libnetfilter_log, libnetfilter_queue or libnetfilter_conntrack.
%prep
%setup -q
%build
if [ ! -e configure ]; then
./autogen.sh
fi
%configure --disable-static
%__make %{?_smp_mflags}
%install
%makeinstall
find %{buildroot} -name "*.la" -delete
%post -n %{name}%{soname} -p /sbin/ldconfig
%postun -n %{name}%{soname} -p /sbin/ldconfig
%clean
test "%{buildroot}" != "/" && %__rm -rf %{buildroot}
%files -n %{name}%{soname}
%defattr(-,root,root)
%doc COPYING README
%{_libdir}/libnfnetlink.so.%{soname}*
%files -n %{name}-devel
%defattr(-,root,root)
%{_includedir}/libnfnetlink
%{_libdir}/libnfnetlink.so
%{_libdir}/pkgconfig/libnfnetlink.pc
%changelog