libnetfilter_queue/libnetfilter_queue.spec

96 lines
3.2 KiB
RPMSpec

#
# spec file for package libnetfilter_queue
#
# Copyright (c) 2012 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: libnetfilter_queue
%define libsoname %{name}1
Version: 1.0.1
Release: 1
License: GPL-2.0
Group: Productivity/Networking/Security
Url: http://netfilter.org/projects/libnetfilter_queue/
#Git-Clone: git://git.netfilter.org/libnetfiler_queue
Source: ftp://ftp.netfilter.org/pub/libnetfilter_queue/%name-%version.tar.bz2
Source2: ftp://ftp.netfilter.org/pub/libnetfilter_queue/%name-%version.tar.bz2.sig
Source3: baselibs.conf
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf automake >= 1.6 libtool
BuildRequires: pkgconfig >= 0.23 pkgconfig(libnfnetlink) >= 0.0.41
Summary: Userspace library for packets that have been queued by the kernel packet filter
%description
libnetfilter_queue is a userspace library providing an API to packets
that have been queued by the kernel packet filter. It is is part of a
system that deprecates the old ip_queue / libipq mechanism.
libnetfilter_queue has been previously known as libnfnetlink_queue.
%package -n %libsoname
Group: System/Libraries
Summary: Userspace library for packets that have been queued by the kernel packet filter
%description -n %libsoname
libnetfilter_queue is a userspace library providing an API to packets
that have been queued by the kernel packet filter. It is is part of a
system that deprecates the old ip_queue / libipq mechanism.
libnetfilter_queue has been previously known as libnfnetlink_queue.
%package devel
Group: Development/Libraries/C and C++
Requires: %libsoname = %version, libnfnetlink-devel
Summary: Userspace library for packets that have been queued by the kernel packet filter
%description devel
libnetfilter_queue is a userspace library providing an API to packets
that have been queued by the kernel packet filter. It is is part of a
system that deprecates the old ip_queue / libipq mechanism.
libnetfilter_queue has been previously known as libnfnetlink_queue.
%prep
%setup -q
%build
if [ ! -e configure ]; then
./autogen.sh;
fi;
%configure --disable-static --includedir=%_includedir/%name-%version
make %{?_smp_mflags}
%install
%makeinstall
rm -f "%buildroot/%_libdir"/*.la;
%post -n %libsoname -p /sbin/ldconfig
%postun -n %libsoname -p /sbin/ldconfig
%files -n %libsoname
%defattr(-,root,root)
%_libdir/libnetfilter_queue.so.1*
%files devel
%defattr(-,root,root)
%_includedir/libnetfilter_queue*
%_libdir/libnetfilter_queue.so
%_libdir/pkgconfig/libnetfilter_queue.pc
%changelog