cscope-vl.spec 2.1 KB

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