2007-01-16 00:17:50 +01:00
|
|
|
#
|
2012-02-18 02:51:40 +01:00
|
|
|
# spec file for package iputils
|
2007-01-16 00:17:50 +01:00
|
|
|
#
|
2012-02-18 02:51:40 +01:00
|
|
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-16 00:17:50 +01:00
|
|
|
#
|
2008-09-05 02:54:56 +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.
|
|
|
|
|
2007-01-16 00:17:50 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2008-09-05 02:54:56 +02:00
|
|
|
|
2007-01-16 00:17:50 +01:00
|
|
|
Name: iputils
|
2012-02-18 02:51:40 +01:00
|
|
|
BuildRequires: docbook_3
|
|
|
|
BuildRequires: iso_ent
|
|
|
|
BuildRequires: libopenssl-devel
|
|
|
|
BuildRequires: opensp
|
|
|
|
BuildRequires: perl-SGMLS
|
2010-09-13 11:47:12 +02:00
|
|
|
%if 0%{?suse_version} > 1130
|
|
|
|
BuildRequires: sysfsutils-devel
|
|
|
|
%else
|
|
|
|
BuildRequires: sysfsutils
|
|
|
|
%endif
|
2010-11-04 16:51:08 +01:00
|
|
|
BuildRequires: libcap-devel
|
|
|
|
Summary: IPv4 and IPv6 Networking Utilities
|
2012-02-18 02:51:40 +01:00
|
|
|
License: BSD-3-Clause ; GPL-2.0+
|
2007-01-16 00:17:50 +01:00
|
|
|
Group: Productivity/Networking/Other
|
2012-02-18 02:51:40 +01:00
|
|
|
Version: s20101006
|
|
|
|
Release: 0
|
2010-07-14 14:07:32 +02:00
|
|
|
Url: http://www.skbuff.net/iputils
|
2010-11-04 16:51:08 +01:00
|
|
|
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
|
2011-05-31 10:10:07 +02:00
|
|
|
Patch7: iputils-pingtypo.diff
|
2007-01-16 00:17:50 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2010-11-04 16:51:08 +01:00
|
|
|
PreReq: permissions
|
2007-01-16 00:17:50 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
This package contains some small network tools for IPv4 and IPv6 like
|
|
|
|
rdisc, ping6, traceroute6, tracepath, and tracepath6.
|
|
|
|
|
|
|
|
%prep
|
2010-11-04 16:51:08 +01:00
|
|
|
%setup -q
|
|
|
|
cp -a %SOURCE1 .
|
2010-07-14 14:07:32 +02:00
|
|
|
%patch1
|
|
|
|
%patch2
|
|
|
|
%patch3
|
2010-11-04 16:51:08 +01:00
|
|
|
#patch4
|
|
|
|
#patch5
|
|
|
|
%patch6 -p1
|
2011-05-31 10:10:07 +02:00
|
|
|
%patch7
|
2007-01-16 00:17:50 +01:00
|
|
|
mkdir linux
|
|
|
|
touch linux/autoconf.h
|
|
|
|
|
|
|
|
%build
|
2010-11-04 16:51:08 +01:00
|
|
|
make %{?_smp_mflags} KERNEL_INCLUDE=$PWD \
|
|
|
|
CCOPT='%optflags -fno-strict-aliasing -fpie -D_GNU_SOURCE' \
|
|
|
|
LDLIBS='-pie -lcap -lresolv' \
|
|
|
|
CAPABILITIES=1
|
2007-01-16 00:17:50 +01:00
|
|
|
gcc $RPM_OPT_FLAGS -o ifenslave ifenslave.c
|
|
|
|
|
2010-07-14 14:07:32 +02:00
|
|
|
make man
|
|
|
|
|
2007-01-16 00:17:50 +01:00
|
|
|
%install
|
2012-02-18 02:51:40 +01:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/%_sbindir
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%_bindir
|
|
|
|
install arping $RPM_BUILD_ROOT/%{_sbindir}
|
|
|
|
install ifenslave $RPM_BUILD_ROOT/%{_sbindir}
|
|
|
|
install clockdiff $RPM_BUILD_ROOT/%{_sbindir}
|
|
|
|
install rdisc $RPM_BUILD_ROOT/%{_sbindir}/in.rdisc
|
|
|
|
install tracepath $RPM_BUILD_ROOT/%{_sbindir}
|
|
|
|
install tracepath6 $RPM_BUILD_ROOT/%{_sbindir}
|
|
|
|
install ping $RPM_BUILD_ROOT/%{_bindir}
|
|
|
|
install ping6 $RPM_BUILD_ROOT/%{_bindir}
|
|
|
|
install ipg $RPM_BUILD_ROOT/%{_bindir}
|
|
|
|
#UsrMerge
|
2007-01-16 00:17:50 +01:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/{bin,sbin}
|
2012-02-18 02:51:40 +01:00
|
|
|
ln -sf %{_sbindir}/arping $RPM_BUILD_ROOT/sbin
|
|
|
|
ln -sf %{_sbindir}/ifenslave $RPM_BUILD_ROOT/sbin
|
|
|
|
ln -sf %{_sbindir}/clockdiff $RPM_BUILD_ROOT/sbin
|
|
|
|
ln -sf %{_sbindir}/in.rdisc $RPM_BUILD_ROOT/sbin
|
|
|
|
ln -sf %{_sbindir}/tracepath $RPM_BUILD_ROOT/sbin
|
|
|
|
ln -sf %{_sbindir}/tracepath6 $RPM_BUILD_ROOT/sbin
|
|
|
|
ln -sf %{_bindir}/ping $RPM_BUILD_ROOT/bin
|
|
|
|
ln -sf %{_bindir}/ping6 $RPM_BUILD_ROOT/bin
|
|
|
|
ln -sf %{_bindir}/ipg $RPM_BUILD_ROOT/bin
|
|
|
|
#EndUsrMerge
|
2007-01-16 00:17:50 +01:00
|
|
|
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
|
|
|
|
|
2010-11-04 16:51:08 +01:00
|
|
|
%post
|
2010-11-24 22:11:35 +01:00
|
|
|
%set_permissions /bin/ping /bin/ping6
|
2010-11-04 16:51:08 +01:00
|
|
|
|
|
|
|
%verifyscript
|
2010-11-24 22:11:35 +01:00
|
|
|
%verify_permissions /bin/ping /bin/ping6
|
2010-11-04 16:51:08 +01:00
|
|
|
|
2007-01-16 00:17:50 +01:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc RELNOTES
|
2012-02-18 02:51:40 +01:00
|
|
|
%{_sbindir}/arping
|
|
|
|
%{_sbindir}/ifenslave
|
|
|
|
%{_sbindir}/clockdiff
|
|
|
|
%verify(not mode caps) %attr(4755,root,root) %{_bindir}/ping
|
|
|
|
%verify(not mode caps) %attr(4755,root,root) %{_bindir}/ping6
|
|
|
|
%{_bindir}/ipg
|
|
|
|
%{_sbindir}/tracepath
|
|
|
|
%{_sbindir}/tracepath6
|
|
|
|
%{_sbindir}/in.rdisc
|
|
|
|
#UsrMerge
|
|
|
|
/bin/*
|
|
|
|
/sbin/*
|
|
|
|
#EndUsrMerge
|
2007-01-16 00:17:50 +01:00
|
|
|
%attr(644,root,root) %_mandir/man8/*
|
|
|
|
|
2007-03-06 19:08:15 +01:00
|
|
|
%changelog
|