2012-06-04 16:19:44 +02:00
|
|
|
#
|
|
|
|
# spec file for package libnetfilter_cthelper
|
|
|
|
#
|
2014-09-23 11:41:54 +02:00
|
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2012-06-04 16:19:44 +02:00
|
|
|
#
|
|
|
|
# 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_cthelper
|
2012-10-08 17:38:01 +02:00
|
|
|
%define lname %{name}0
|
|
|
|
Version: 1.0.0
|
2012-06-04 16:19:44 +02:00
|
|
|
Release: 0
|
|
|
|
Url: http://netfilter.org/projects/libnetfilter_cthelper/
|
|
|
|
Summary: Userspace library for the Netfilter Conntrack Helper extension
|
2012-06-06 17:24:27 +02:00
|
|
|
License: GPL-2.0+
|
2012-06-04 16:19:44 +02:00
|
|
|
Group: Productivity/Networking/Security
|
|
|
|
|
|
|
|
#Git-Clone: git://git.netfilter.org/libnetfilter_cthelper
|
2012-10-08 17:38:01 +02:00
|
|
|
#DL-URL: http://netfilter.org/projects/libnetfilter_cthelper/files/
|
|
|
|
Source: http://netfilter.org/projects/libnetfilter_cthelper/files/%name-%version.tar.bz2
|
|
|
|
Source2: http://netfilter.org/projects/libnetfilter_cthelper/files/%name-%version.tar.bz2.sig
|
2012-06-04 16:19:44 +02:00
|
|
|
Source3: baselibs.conf
|
2012-12-03 22:55:03 +01:00
|
|
|
Source4: %name.keyring
|
2014-12-08 18:33:27 +01:00
|
|
|
Patch1: fix_h_expect_policy_free.patch
|
2012-06-04 16:19:44 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2012-10-08 17:38:01 +02:00
|
|
|
#BuildRequires: autoconf
|
|
|
|
#BuildRequires: automake >= 1.6
|
|
|
|
#BuildRequires: libtool >= 2
|
2012-06-04 16:19:44 +02:00
|
|
|
BuildRequires: pkgconfig >= 0.21
|
|
|
|
BuildRequires: pkgconfig(libmnl) >= 1.0.0
|
|
|
|
|
|
|
|
%description
|
|
|
|
This library provides the programming interface (API) to the
|
|
|
|
Netfilter userspace helper infrastructure.
|
|
|
|
|
|
|
|
%package -n %lname
|
|
|
|
Summary: Userspace library for the Netfilter Conntrack Helper extension
|
|
|
|
Group: System/Libraries
|
|
|
|
|
|
|
|
%description -n %lname
|
|
|
|
This library provides the programming interface (API) to the
|
|
|
|
Netfilter userspace helper infrastructure.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Userspace library for the Netfilter Conntrack Helper extension
|
|
|
|
Group: Development/Libraries/C and C++
|
2014-09-23 17:59:11 +02:00
|
|
|
Requires: %lname = %version
|
2012-06-04 16:19:44 +02:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
This library provides the programming interface (API) to the
|
|
|
|
Netfilter userspace helper infrastructure.
|
|
|
|
|
|
|
|
%prep
|
2012-10-08 17:38:01 +02:00
|
|
|
%setup -q
|
2014-12-08 18:33:27 +01:00
|
|
|
%patch -P 1 -p1
|
2012-06-04 16:19:44 +02:00
|
|
|
|
|
|
|
%build
|
|
|
|
if [ ! -e configure ]; then
|
|
|
|
autoreconf -fi;
|
|
|
|
fi;
|
2014-12-08 18:33:27 +01:00
|
|
|
%configure --disable-static --includedir="%_includedir/%name"
|
2012-06-04 16:19:44 +02:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
2012-06-30 03:17:58 +02:00
|
|
|
make install DESTDIR="%buildroot";
|
2012-06-04 16:19:44 +02:00
|
|
|
rm -f "%buildroot/%_libdir"/*.la;
|
|
|
|
|
|
|
|
%post -n %lname -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -n %lname -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files -n %lname
|
|
|
|
%defattr(-,root,root)
|
2012-10-08 17:38:01 +02:00
|
|
|
%_libdir/libnetfilter_cthelper.so.0*
|
2012-06-04 16:19:44 +02:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
2014-12-08 18:33:27 +01:00
|
|
|
%_includedir/%name/
|
2012-06-04 16:19:44 +02:00
|
|
|
%_libdir/libnetfilter_cthelper.so
|
|
|
|
%_libdir/pkgconfig/libnetfilter_cthelper.pc
|
|
|
|
|
|
|
|
%changelog
|