source: projects/specs/branches/6/c/cscope/cscope-vl.spec @ 6356

Revision 6356, 2.1 KB checked in by Takemikaduchi, 12 years ago (diff)

adjtimex,coriander,corosync,cproto,cscope,dbmail,dcraw: new upstream release
others: rebuild

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