bmon-vl.spec 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. Name: bmon
  2. Version: 1.2.1
  3. Release: 0vl2
  4. Vendor: Project Vine
  5. Distribution: Vine Linux
  6. License: Artistic License
  7. Group: Applications/System
  8. URL: http://trash.net/~reeler/bmon/
  9. Source0: http://trash.net/~reeler/bmon/files/%{name}-%{version}.tar.bz2
  10. Source1: bmon.desktop
  11. Patch0: bmon-Makefile.patch
  12. BuildRoot: %{_tmppath}/%{name}-root
  13. Requires: ncurses
  14. BuildPreReq: ncurses-devel
  15. Summary: an interface bandwidth monitor
  16. Summary(ja): ネットワークインターフェースのモニタ
  17. %description
  18. bmon is an interface bandwidth monitor.
  19. It is able to generate and draw three types of diagrams:
  20. * The overview diagram which is a list of all interfaces and their
  21. send/receive rates.
  22. * A very MRTG like graphical diagram in ASCII showing the rate over a
  23. specific time period in a bar diagram.
  24. * The details diagram which contains all counters of an interface
  25. such as total bytes sent/received, errors, compressed packets, ...
  26. %description -l ja
  27. bmon はネットワークインターフェースのモニタです.
  28. 3種類の表示が可能です.
  29. * overview : 全てのネットワークインターフェースの送受信レートを一覧表示
  30. * graphical : MRTG 風のグラフ(ASCII)で,送受信レートを時間軸の上に表示
  31. * detail : 送受信バイト数,エラー数,パケット数などの数値を表示
  32. %prep
  33. %setup -q
  34. %patch0 -p1
  35. %build
  36. %configure
  37. %__make
  38. %install
  39. %__rm -rf %{buildroot}
  40. %makeinstall
  41. %define applnkdir %{_datadir}/applications
  42. %__mkdir_p %{buildroot}%{applnkdir}
  43. %__install -m644 %{SOURCE1} %{buildroot}%{applnkdir}
  44. %clean
  45. %__rm -rf %{buildroot}
  46. %files
  47. %defattr(-,root,root)
  48. %doc AUTHORS COPYING ChangeLog bmonrc
  49. %config %{applnkdir}/*
  50. %{_bindir}/*
  51. %{_mandir}/man?/*
  52. %changelog
  53. * Sun Oct 10 2004 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 1.2.1-0vl2
  54. - add Japanese Summary
  55. - change path to desktop file
  56. - separate desktop file from spec file
  57. * Sat Aug 2 2003 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 1.2.1-0vl1
  58. - new upstream version.
  59. - add Requires and BuildPreReq
  60. * Thu Apr 17 2003 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> 1.2.0-0vl1
  61. - Initial build.