49 lines
1.5 KiB
RPMSpec
49 lines
1.5 KiB
RPMSpec
Name: nethogs
|
|
Version: 0.8.0
|
|
Release: 1mamba
|
|
Summary: NetHogs is a small 'net top' tool.
|
|
Group: Applications/Networking
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Ercole 'ercolinux' Carpanetto <ercole69@gmail.com>
|
|
URL: http://nethogs.sourceforge.net/
|
|
Source: http://kent.dl.sourceforge.net/project/nethogs/nethogs/0.8/nethogs-%{version}.tar.gz
|
|
Patch: nethogs-makelist.patch
|
|
License: GPL
|
|
## AUTOBUILDREQ-BEGIN
|
|
BuildRequires: glibc-devel
|
|
BuildRequires: libgcc
|
|
BuildRequires: libncurses-devel
|
|
BuildRequires: libpcap-devel
|
|
BuildRequires: libstdc++6-devel
|
|
## AUTOBUILDREQ-END
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
|
%debug_package
|
|
|
|
%description
|
|
NetHogs is a small 'net top' tool. Instead of breaking the traffic down per protocol or per subnet, like most tools do, it groups bandwidth by process. NetHogs does not rely on a special kernel module to be loaded. If there's suddenly a lot of network traffic, you can fire up NetHogs and immediately see which PID is causing this. This makes it easy to indentify programs that have gone wild and are suddenly taking up your bandwidth.
|
|
|
|
%prep
|
|
%setup -q -n %{name}
|
|
%patch -p1
|
|
|
|
%build
|
|
%make
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
%makeinstall DESTDIR=%{buildroot}/usr
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%{_sbindir}/nethogs
|
|
%{_mandir}/man8/nethogs.8.gz
|
|
|
|
%changelog
|
|
* Sun Apr 29 2012 Ercole 'ercolinux' Carpanetto <ercole69@gmail.com> 0.8.0-1mamba
|
|
- package created by autospec
|