forked from pool/libnetfilter_conntrack
db8715f049
OBS-URL: https://build.opensuse.org/package/show/security:netfilter/libnetfilter_conntrack?expand=0&rev=0c283a315192981de4424cee87471dcd
101 lines
3.4 KiB
RPMSpec
101 lines
3.4 KiB
RPMSpec
#
|
|
# spec file for package libnetfilter_conntrack
|
|
#
|
|
# Copyright (c) 2011 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 3
|
|
|
|
Name: libnetfilter_conntrack
|
|
Version: 0.9.1
|
|
Release: 1
|
|
License: GNU GPL v2
|
|
Group: Productivity/Networking/Security
|
|
Url: http://netfilter.org/projects/libnetfilter_conntrack/
|
|
Source: http://netfilter.org/projects/%name/files/%name-%version.tar.bz2
|
|
Source2: http://netfilter.org/projects/%name/files/%name-%version.tar.bz2.sig
|
|
Source3: baselibs.conf
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: libnfnetlink-devel >= 1.0.0
|
|
BuildRequires: linux-kernel-headers >= 2.6.18 pkg-config
|
|
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.
|
|
|
|
%define debug_package_requires %{name}%{soname} = %{version}-%{release}
|
|
|
|
%package -n %{name}%{soname}
|
|
|
|
|
|
Group: System/Libraries
|
|
Summary: Userspace library for the in-kernel connection tracking state table
|
|
|
|
%description -n %{name}%{soname}
|
|
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 %{name}-devel
|
|
|
|
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{name}%{soname} = %{version}
|
|
Summary: Userspace library for the in-kernel connection tracking state table
|
|
|
|
%description -n %{name}-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
|
|
%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)
|
|
%{_libdir}/libnetfilter_conntrack.so.%{soname}*
|
|
|
|
%files -n %{name}-devel
|
|
%defattr(-,root,root)
|
|
%{_includedir}/libnetfilter_conntrack
|
|
%{_libdir}/libnetfilter_conntrack.so
|
|
%{_libdir}/pkgconfig/libnetfilter_conntrack.pc
|
|
|
|
%changelog
|