source: projects/specs/trunk/c/cscope/cscope-vl.spec @ 521

Revision 521, 2.0 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

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