cscope-vl.spec 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. Summary: C source code tree search and browse tool
  2. Name: cscope
  3. Version: 15.7a
  4. Release: 1%{?_dist_release}
  5. License: BSD
  6. Group: Development/Tools
  7. Source: cscope-%{version}.tar.bz2
  8. URL: http://cscope.sourceforge.net/
  9. Buildroot: %{_tmppath}/%{name}-%{version}-root
  10. BuildRequires: ncurses-devel
  11. %description
  12. cscope is a mature, ncurses based, C source code tree browsing tool. It
  13. allows users to search large source code bases for variables, functions,
  14. macros, etc, as well as perform general regex and plain text searches.
  15. Results are returned in lists, from which the user can select individual
  16. matches for use in file editing.
  17. %prep
  18. %setup -q
  19. %build
  20. %configure
  21. make
  22. %install
  23. rm -rf $RPM_BUILD_ROOT
  24. mkdir -p $RPM_BUILD_ROOT/%{_bindir}
  25. mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1
  26. install -s -m 755 src/cscope $RPM_BUILD_ROOT/%{_bindir}/cscope
  27. install -m 755 doc/cscope.1 $RPM_BUILD_ROOT/%{_mandir}/man1/cscope.1
  28. %clean
  29. rm -rf $RPM_BUILD_ROOT
  30. %files
  31. %defattr(-,root,root)
  32. %doc TODO COPYING ChangeLog AUTHORS README NEWS
  33. %{_bindir}/cscope
  34. %{_mandir}/man1/cscope.1*
  35. %changelog
  36. * Mon Aug 20 2001 Yoichi Imai <yoichi@silver-forest.com>
  37. - applied new versioning policy
  38. - s/Copyright/License/
  39. * Mon Aug 20 2001 Yoichi Imai <yoichi@silver-forest.com>
  40. - use macros for path
  41. - rebuilded for Vine Linux
  42. * Mon Jul 2 2001 Cscope development team
  43. - Version 15.3 release
  44. - New flex scanner
  45. - XEmacs support improvements
  46. - Vim support improvements
  47. - 64 bit fixes
  48. - MSDOS support
  49. - More editing keys
  50. - Webcscope added to contrib
  51. * Wed Nov 20 2000 Cscope development team
  52. - Version 15.1 release
  53. - New menu and line matching interface
  54. - Support for up to 62 (up from 9) matching lines on screen
  55. - Numerous fixes
  56. - Updated documentation
  57. * Tue May 15 2000 Cscope development team
  58. - Version 15.0bl2 (build 2) pre-alpha release
  59. - Fixes and enhancements
  60. - Updated documentation
  61. - Autoconf/automake support
  62. - directory restructuring
  63. * Sun Apr 16 2000 Petr Sorfa <petrs@sco.com>
  64. - Initial Open Source release
  65. - Ported to GNU environment
  66. - Created rpm package