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

Revision 9395, 2.2 KB checked in by inagaki, 9 years ago (diff)

2015-02-28 Ryoichi INAGAKI <ryo1@…>

  • cproto, cscope: updated
  • paps, psutils: rebuilt


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