diff --git a/README.md b/README.md index 45963d0..03f0390 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # mtr +mtr combines the functionality of the 'traceroute' and 'ping' programs in a single network diagnostic tool. +As mtr starts, it investigates the network connection between the host mtr runs on and a user-specified destination host. After it determines the address of each network hop between the machines, it sends a sequence ICMP ECHO requests to each one to determine the quality of the link to each machine. As it does this, it prints running statistics about each machine. + diff --git a/mtr.spec b/mtr.spec new file mode 100644 index 0000000..548984d --- /dev/null +++ b/mtr.spec @@ -0,0 +1,55 @@ +Name: mtr +Version: 0.85 +Release: 1mamba +Summary: The functionality of the 'traceroute' and 'ping' programs in a single network diagnostic tool +Group: Network/Monitoring +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.bitwizard.nl/mtr/ +Source: ftp://ftp.bitwizard.nl/mtr/mtr-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libatk-devel +BuildRequires: libcairo-devel +BuildRequires: libfontconfig-devel +BuildRequires: libfreetype-devel +BuildRequires: libgdk-pixbuf-devel +BuildRequires: libglib-devel +BuildRequires: libgtk2-devel +BuildRequires: libncurses-devel +BuildRequires: libpango-devel +BuildRequires: libtermcap-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +mtr combines the functionality of the 'traceroute' and 'ping' programs in a single network diagnostic tool. +As mtr starts, it investigates the network connection between the host mtr runs on and a user-specified destination host. After it determines the address of each network hop between the machines, it sends a sequence ICMP ECHO requests to each one to determine the quality of the link to each machine. As it does this, it prints running statistics about each machine. + +%debug_package + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_sbindir}/mtr +%{_mandir}/man8/mtr.8* +%doc AUTHORS COPYING + +%changelog +* Wed Jul 23 2014 Silvan Calarco 0.85-1mamba +- package created using the webbuild interface