2007-01-16 00:08:09 +01:00
|
|
|
#
|
2011-05-02 14:38:14 +02:00
|
|
|
# spec file for package cscope
|
2007-01-16 00:08:09 +01:00
|
|
|
#
|
2011-05-02 14:38:14 +02:00
|
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-16 00:08:09 +01:00
|
|
|
#
|
2009-02-16 01:14:51 +01:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2007-01-16 00:08:09 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2008-06-23 20:45:09 +02:00
|
|
|
|
2007-01-16 00:08:09 +01:00
|
|
|
Name: cscope
|
2009-05-04 18:02:23 +02:00
|
|
|
Version: 15.7a
|
2011-06-23 16:44:07 +02:00
|
|
|
Release: 12
|
2011-05-02 14:38:14 +02:00
|
|
|
License: BSD3c
|
2007-01-16 00:08:09 +01:00
|
|
|
Summary: Interactive Tool for Browsing C Source Code
|
2011-05-02 14:38:02 +02:00
|
|
|
Url: http://cscope.sourceforge.net/
|
|
|
|
Group: Development/Tools/Navigators
|
2009-02-16 01:14:51 +01:00
|
|
|
Source: %{name}-%{version}.tar.bz2
|
|
|
|
Patch1: %{name}-null.patch
|
2009-05-04 18:02:23 +02:00
|
|
|
Patch2: %{name}-15.7-gcc-warnings.patch
|
|
|
|
Patch3: %{name}-15.7-vpath.patch
|
2009-02-16 01:14:51 +01:00
|
|
|
Patch5: %{name}-cleanup_on_sigterm.patch
|
2011-06-23 16:44:07 +02:00
|
|
|
Patch6: %{name}-egrep.out.patch
|
|
|
|
Patch7: %{name}-ctrlz.patch
|
2011-05-02 14:38:02 +02:00
|
|
|
BuildRequires: bison
|
|
|
|
BuildRequires: flex
|
|
|
|
BuildRequires: ncurses-devel
|
2007-01-16 00:08:09 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
|
|
|
Cscope is an interactive, screen-oriented tool that allows the user to
|
|
|
|
browse through C source code files for specified elements of code.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
%patch1 -p1
|
|
|
|
%patch2
|
|
|
|
%patch3
|
2007-12-13 14:02:11 +01:00
|
|
|
%patch5
|
2011-06-23 16:44:07 +02:00
|
|
|
%patch6 -p1
|
|
|
|
%patch7 -p1
|
2007-01-16 00:08:09 +01:00
|
|
|
|
|
|
|
%build
|
|
|
|
%{?suse_update_config:%{suse_update_config}}
|
2009-02-16 01:14:51 +01:00
|
|
|
%configure
|
2007-01-16 00:08:09 +01:00
|
|
|
make
|
|
|
|
|
|
|
|
%install
|
2011-05-02 14:38:02 +02:00
|
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
|
|
mkdir -p %{buildroot}%{_mandir}/man1
|
|
|
|
install -m 755 src/cscope %{buildroot}%{_bindir}/cscope
|
|
|
|
install -m 644 doc/cscope.1 %{buildroot}%{_mandir}/man1/cscope.1
|
|
|
|
install -m 755 contrib/xcscope/cscope-indexer %{buildroot}%{_bindir}/cscope-indexer
|
2009-02-16 01:14:51 +01:00
|
|
|
pushd contrib
|
2011-05-02 14:38:02 +02:00
|
|
|
%make_install
|
2009-02-16 01:14:51 +01:00
|
|
|
popd
|
2007-01-16 00:08:09 +01:00
|
|
|
|
|
|
|
%clean
|
2011-05-02 14:38:02 +02:00
|
|
|
rm -rf %{buildroot}
|
2007-01-16 00:08:09 +01:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc TODO COPYING ChangeLog AUTHORS README NEWS INSTALL
|
|
|
|
%doc %{_mandir}/man1/cscope.1.gz
|
2009-02-16 01:14:51 +01:00
|
|
|
%{_bindir}/cscope
|
|
|
|
%{_bindir}/ocs
|
2011-05-02 14:38:02 +02:00
|
|
|
%{_bindir}/cscope-indexer
|
2007-01-16 00:08:09 +01:00
|
|
|
|
2007-03-30 02:34:22 +02:00
|
|
|
%changelog
|