1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- Summary: C source code tree search and browse tool
- Name: cscope
- Version: 15.8
- Release: 1%{?_dist_release}
- License: BSD
- Group: Development/Tools
- Source: cscope-%{version}.tar.bz2
- URL: http://cscope.sourceforge.net/
- Buildroot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: ncurses-devel
- BuildRequires: bison
- BuildRequires: flex
- %description
- cscope is a mature, ncurses based, C source code tree browsing tool. It
- allows users to search large source code bases for variables, functions,
- macros, etc, as well as perform general regex and plain text searches.
- Results are returned in lists, from which the user can select individual
- matches for use in file editing.
- %prep
- %setup -q
- %build
- %configure
- make
- %install
- rm -rf $RPM_BUILD_ROOT
- mkdir -p $RPM_BUILD_ROOT/%{_bindir}
- mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1
- install -s -m 755 src/cscope $RPM_BUILD_ROOT/%{_bindir}/cscope
- install -m 755 doc/cscope.1 $RPM_BUILD_ROOT/%{_mandir}/man1/cscope.1
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-,root,root)
- %doc TODO COPYING ChangeLog AUTHORS README NEWS
- %{_bindir}/cscope
- %{_mandir}/man1/cscope.1*
- %changelog
- * Sat Jun 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp>
- - new upstream release
- - add BuildRequires: bison, flex
- * Mon Aug 20 2001 Yoichi Imai <yoichi@silver-forest.com>
- - applied new versioning policy
- - s/Copyright/License/
- * Mon Aug 20 2001 Yoichi Imai <yoichi@silver-forest.com>
- - use macros for path
- - rebuilded for Vine Linux
- * Mon Jul 2 2001 Cscope development team
- - Version 15.3 release
- - New flex scanner
- - XEmacs support improvements
- - Vim support improvements
- - 64 bit fixes
- - MSDOS support
- - More editing keys
- - Webcscope added to contrib
- * Wed Nov 20 2000 Cscope development team
- - Version 15.1 release
- - New menu and line matching interface
- - Support for up to 62 (up from 9) matching lines on screen
- - Numerous fixes
- - Updated documentation
- * Tue May 15 2000 Cscope development team
- - Version 15.0bl2 (build 2) pre-alpha release
- - Fixes and enhancements
- - Updated documentation
- - Autoconf/automake support
- - directory restructuring
- * Sun Apr 16 2000 Petr Sorfa <petrs@sco.com>
- - Initial Open Source release
- - Ported to GNU environment
- - Created rpm package
|