Pedro Monreal Gonzalez
a9d0d263e6
- update to 4.99.3: * Updated printers: PTP: Use the proper values for the control field and print un-allocated values for the message field as "Reserved" instead of "none". * Source code: smbutil.c: Replace obsolete function call (asctime) * Documentation: Reformat the installation notes (INSTALL.txt) in Markdown. Convert CONTRIBUTING to Markdown. CONTRIBUTING.md: Document the use of "protocol: " in a commit summary. Add a README file for NetBSD. Fix CMake build to set man page section numbers in tcpdump.1 OBS-URL: https://build.opensuse.org/request/show/1058821 OBS-URL: https://build.opensuse.org/package/show/network:utilities/tcpdump?expand=0&rev=64
78 lines
2.2 KiB
RPMSpec
78 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package tcpdump
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define min_libpcap_version 1.10.0
|
|
Name: tcpdump
|
|
Version: 4.99.3
|
|
Release: 0
|
|
Summary: A Packet Sniffer
|
|
License: BSD-3-Clause
|
|
URL: https://www.tcpdump.org/
|
|
Source: https://www.tcpdump.org/release/%{name}-%{version}.tar.gz
|
|
Source1: tcpdump-qeth
|
|
Source2: https://www.tcpdump.org/release/%{name}-%{version}.tar.gz.sig
|
|
Source3: https://www.tcpdump.org/tcpdump-workers.asc#/%{name}.keyring
|
|
BuildRequires: libpcap-devel >= %{min_libpcap_version}
|
|
BuildRequires: libsmi-devel
|
|
BuildRequires: openssl-devel
|
|
Requires: libpcap >= %{min_libpcap_version}
|
|
|
|
%description
|
|
This program can "read" all or only certain packets going over the
|
|
ethernet. It can be used to debug specific network problems.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
# guessing TSO needed in print-ip.c
|
|
export CFLAGS="%{optflags} -DGUESS_TSO"
|
|
%ifarch i586
|
|
export CFLAGS="$CFLAGS -ffloat-store"
|
|
%endif
|
|
%configure
|
|
%make_build
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{_sbindir}
|
|
mkdir -p %{buildroot}%{_mandir}/man1
|
|
mkdir -p %{buildroot}%{_libdir}
|
|
install -m755 tcpdump %{buildroot}%{_sbindir}
|
|
install -m644 tcpdump.1 %{buildroot}%{_mandir}/man1/
|
|
%ifarch s390 s390x
|
|
install -D -m 755 %{SOURCE1} %{buildroot}%{_sbindir}
|
|
%endif
|
|
# Add a symlink in /usr/bin to be accessed by users
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
ln -sf %{_sbindir}/tcpdump %{buildroot}%{_bindir}/tcpdump
|
|
|
|
%check
|
|
%make_build check
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc CHANGES CREDITS README* *.awk
|
|
%{_mandir}/man?/*
|
|
%{_sbindir}/tcpdump
|
|
%{_bindir}/tcpdump
|
|
%ifarch s390 s390x
|
|
%{_sbindir}/tcpdump-qeth
|
|
%endif
|
|
|
|
%changelog
|