libnetfilter_conntrack/libnetfilter_conntrack.spec

99 lines
3.4 KiB
RPMSpec

#
# spec file for package libnetfilter_conntrack
#
# 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_conntrack
%define lname %{name}3
Version: 1.0.0
Release: 0
License: GPL-2.0+
Group: Productivity/Networking/Security
Url: http://netfilter.org/projects/libnetfilter_conntrack/
#Git-Clone: git://git.netfilter.org/libnetfilter_conntrack
%define git_snapshot 0
Source: ftp://ftp.netfilter.org/pub/libnetfilter_conntrack/%name-%version.tar.bz2
Source2: ftp://ftp.netfilter.org/pub/libnetfilter_conntrack/%name-%version.tar.bz2.sig
Source3: baselibs.conf
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if %git_snapshot
BuildRequires: autoconf automake >= 1.6 libtool
%endif
BuildRequires: pkgconfig >= 0.23 pkgconfig(libnfnetlink) >= 1.0.0
Summary: Userspace library for the in-kernel connection tracking state table
%description
libnetfilter_conntrack is a userspace library providing a programming
interface (API) to the in-kernel connection tracking state table. The
library libnetfilter_conntrack has been previously known as
libnfnetlink_conntrack and libctnetlink. This library is currently
used by conntrack-tools among many other applications.
%package -n %lname
Group: System/Libraries
Summary: Userspace library for the in-kernel connection tracking state table
%description -n %lname
libnetfilter_conntrack is a userspace library providing a programming
interface (API) to the in-kernel connection tracking state table. The
library libnetfilter_conntrack has been previously known as
libnfnetlink_conntrack and libctnetlink. This library is currently
used by conntrack-tools among many other applications.
%package devel
Group: Development/Libraries/C and C++
Requires: %lname = %version
Summary: Userspace library for the in-kernel connection tracking state table
%description devel
libnetfilter_conntrack is a userspace library providing a programming
interface (API) to the in-kernel connection tracking state table. The
library libnetfilter_conntrack has been previously known as
libnfnetlink_conntrack and libctnetlink. This library is currently
used by conntrack-tools among many other applications.
%prep
%setup -q
%build
if [ "%git_snapshot" -ne 0 ] || [ ! -e configure ]; then
autoreconf -fi;
fi;
%configure --disable-static --includedir=%_includedir/%name
make %{?_smp_mflags}
%install
%makeinstall
rm -f "%buildroot/%_libdir"/*.la;
%post -n %lname -p /sbin/ldconfig
%postun -n %lname -p /sbin/ldconfig
%files -n %lname
%defattr(-,root,root)
%_libdir/libnetfilter_conntrack.so.3*
%files devel
%defattr(-,root,root)
%_includedir/libnetfilter_conntrack
%_libdir/libnetfilter_conntrack.so
%_libdir/pkgconfig/libnetfilter_conntrack.pc
%changelog