libnetfilter_cthelper/libnetfilter_cthelper.spec

100 lines
2.8 KiB
RPMSpec

#
# spec file for package libnetfilter_cthelper
#
# 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_cthelper
%define lname %{name}-0-0
Version: 0
Release: 0
Url: http://netfilter.org/projects/libnetfilter_cthelper/
Summary: Userspace library for the Netfilter Conntrack Helper extension
License: GPL-2.0+
Group: Productivity/Networking/Security
#Git-Clone: git://git.netfilter.org/libnetfilter_cthelper
Source: %name-%version.tar.xz
Source3: baselibs.conf
Patch1: libname.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf
BuildRequires: automake >= 1.6
BuildRequires: libtool >= 2
BuildRequires: pkgconfig >= 0.21
%if 0%{?suse_version} >= 1140 || 0%{?fedora_version}
BuildRequires: pkgconfig(libmnl) >= 1.0.0
%else
BuildRequires: libmnl-devel >= 1.0.0
%endif
BuildRequires: xz
%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
Requires: %lname = %version
Summary: Userspace library for the Netfilter Conntrack Helper extension
Group: Development/Libraries/C and C++
%description devel
This library provides the programming interface (API) to the
Netfilter userspace helper infrastructure.
%prep
%if 0%{?__xz:1}
%setup -qn %name
%else
tar -xf "%{S:0}" --use=xz;
%setup -DTqn %name
%endif
%patch -P 1 -p1
%build
if [ ! -e configure ]; then
autoreconf -fi;
fi;
%configure --disable-static --includedir=%_includedir/%name-%version
make %{?_smp_mflags}
%install
make install DESTDIR="%buildroot";
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_cthelper-0.so.0*
%files devel
%defattr(-,root,root)
%_includedir/%name-%version
%_libdir/libnetfilter_cthelper.so
%_libdir/pkgconfig/libnetfilter_cthelper.pc
%changelog