forked from pool/libnetfilter_acct
Jan Engelhardt
c8bf5d9879
OBS-URL: https://build.opensuse.org/package/show/security:netfilter/libnetfilter_acct?expand=0&rev=13
105 lines
3.0 KiB
RPMSpec
105 lines
3.0 KiB
RPMSpec
#
|
|
# spec file for package libnetfilter_acct
|
|
#
|
|
# 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_acct
|
|
%define lname %{name}1
|
|
Version: 1.0.0
|
|
Release: 0
|
|
Summary: Userspace library for the in-kernel Netfilter counters
|
|
License: LGPL-2.1+
|
|
Group: Productivity/Networking/Security
|
|
Url: http://netfilter.org/projects/libnetfilter_acct/
|
|
|
|
Source: %name-%version.tar.bz2
|
|
Source2: %name-%version.tar.bz2.sig
|
|
Source3: baselibs.conf
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
#git#BuildRequires: autoconf, automake >= 1.6, libtool
|
|
BuildRequires: glibc-devel >= 2.9
|
|
BuildRequires: pkgconfig >= 0.21
|
|
%if 0%{?suse_version} >= 1210 || 0%{?fedora_version}
|
|
BuildRequires: pkgconfig(libmnl) >= 1.0.0
|
|
%else
|
|
BuildRequires: libmnl-devel >= 1.0.0
|
|
%endif
|
|
%if 0%{?suse_version} >= 1140
|
|
BuildRequires: linux-glibc-devel >= 2.6.24
|
|
%endif
|
|
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
|
BuildRequires: linux-kernel-headers >= 2.6.24
|
|
%endif
|
|
%if 0%{?redhat_version} || 0%{?centos_version} || 0%{?fedora_version}
|
|
BuildRequires: kernel-headers >= 2.6.24
|
|
%endif
|
|
|
|
%description
|
|
This library provides the programming interface (API) to the
|
|
Netfilter extended accounting infrastructure.
|
|
|
|
%package -n %lname
|
|
Summary: Userspace library for the in-kernel Netfilter counters
|
|
Group: System/Libraries
|
|
|
|
%description -n %lname
|
|
This library provides the programming interface (API) to the
|
|
Netfilter extended accounting infrastructure.
|
|
|
|
%package devel
|
|
Requires: %lname = %version
|
|
Summary: Userspace library for the in-kernel Netfilter counters
|
|
Group: Development/Libraries/C and C++
|
|
|
|
%description devel
|
|
This library provides the programming interface (API) to the
|
|
Netfilter extended accounting infrastructure.
|
|
|
|
%prep
|
|
%if 0%{?__xz:1}
|
|
%setup -q
|
|
%else
|
|
tar -xf "%{S:0}" --use=bzip2;
|
|
%setup -DTq
|
|
%endif
|
|
|
|
%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_acct.so.1*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%_includedir/%name-%version
|
|
%_libdir/libnetfilter_acct.so
|
|
%_libdir/pkgconfig/libnetfilter_acct.pc
|
|
|
|
%changelog
|