iputils/iputils.spec
Marcus Schaefer 0a8402914a - fixed typo in ping output. Since 11.4 sequence tag is icmp_req
instead of icmp_seq beause of that for example cacti ping script
  does not work anymore (bnc #696720)

OBS-URL: https://build.opensuse.org/package/show/network:utilities/iputils?expand=0&rev=22
2011-05-31 08:10:07 +00:00

117 lines
3.4 KiB
RPMSpec

#
# spec file for package iputils (Version s20101006)
#
# Copyright (c) 2010 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
Name: iputils
BuildRequires: docbook_3 iso_ent libopenssl-devel opensp perl-SGMLS
%if 0%{?suse_version} > 1130
BuildRequires: sysfsutils-devel
%else
BuildRequires: sysfsutils
%endif
BuildRequires: libcap-devel
Summary: IPv4 and IPv6 Networking Utilities
Version: s20101006
Release: 2
License: BSD3c ; GPLv2+
Group: Productivity/Networking/Other
Url: http://www.skbuff.net/iputils
Source: http://www.skbuff.net/iputils/iputils-%{version}.tar.bz2
# XXX: from linux/Documentation/networking/ifenslave.c
Source1: ifenslave.c
Patch1: iputils-pingnamelookuponce.diff
Patch2: iputils-traceroute6-stdint.diff
Patch3: iputils-ifenslave.diff
Patch6: iputils-s20101006-capabilities.diff
Patch7: iputils-pingtypo.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: permissions
%description
This package contains some small network tools for IPv4 and IPv6 like
rdisc, ping6, traceroute6, tracepath, and tracepath6.
%prep
%setup -q
cp -a %SOURCE1 .
%patch1
%patch2
%patch3
#patch4
#patch5
%patch6 -p1
%patch7
mkdir linux
touch linux/autoconf.h
%build
make %{?_smp_mflags} KERNEL_INCLUDE=$PWD \
CCOPT='%optflags -fno-strict-aliasing -fpie -D_GNU_SOURCE' \
LDLIBS='-pie -lcap -lresolv' \
CAPABILITIES=1
gcc $RPM_OPT_FLAGS -o ifenslave ifenslave.c
make man
%install
mkdir -p $RPM_BUILD_ROOT%_sbindir
mkdir -p $RPM_BUILD_ROOT/{bin,sbin}
install arping $RPM_BUILD_ROOT/sbin/
install ifenslave $RPM_BUILD_ROOT/sbin/
install clockdiff $RPM_BUILD_ROOT/sbin/
install rdisc $RPM_BUILD_ROOT/sbin/in.rdisc
install ping $RPM_BUILD_ROOT/bin
install ping6 $RPM_BUILD_ROOT/bin
install ipg $RPM_BUILD_ROOT/bin
install tracepath $RPM_BUILD_ROOT/sbin
install tracepath6 $RPM_BUILD_ROOT/sbin
mkdir -p $RPM_BUILD_ROOT%_mandir/man8
install -m 644 doc/arping.8 $RPM_BUILD_ROOT%_mandir/man8/
install -m 644 doc/clockdiff.8 $RPM_BUILD_ROOT%_mandir/man8/
install -m 644 doc/tracepath.8 $RPM_BUILD_ROOT%_mandir/man8/
install -m 644 doc/ping.8 $RPM_BUILD_ROOT%_mandir/man8/
install -m 644 doc/ping.8 $RPM_BUILD_ROOT%_mandir/man8/ping6.8
install -m 644 doc/pg3.8 $RPM_BUILD_ROOT%_mandir/man8/
install -m 644 doc/rdisc.8 $RPM_BUILD_ROOT%_mandir/man8/
%clean
rm -rf $RPM_BUILD_ROOT
%post
%set_permissions /bin/ping /bin/ping6
%verifyscript
%verify_permissions /bin/ping /bin/ping6
%files
%defattr(-,root,root)
%doc RELNOTES
/sbin/arping
/sbin/ifenslave
/sbin/clockdiff
%verify(not mode caps) %attr(4755,root,root) /bin/ping
%verify(not mode caps) %attr(4755,root,root) /bin/ping6
/bin/ipg
/sbin/tracepath
/sbin/tracepath6
/sbin/in.rdisc
%attr(644,root,root) %_mandir/man8/*
%changelog