Marcus Meissner
702291d638
- Added url as source. Please see http://en.opensuse.org/SourceUrls OBS-URL: https://build.opensuse.org/request/show/160548 OBS-URL: https://build.opensuse.org/package/show/devel:tools/ctags?expand=0&rev=18
94 lines
3.2 KiB
RPMSpec
94 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package ctags
|
|
#
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: ctags
|
|
%define ctags_ver 5.8
|
|
%define etags_ver 17.38.1.4
|
|
# Let the date means last update of either ctags or etags tarball
|
|
Version: 2011.8.2
|
|
Release: 0
|
|
Summary: A Program to Generate Tag Files for Use with vi and Other Editors
|
|
License: GPL-2.0+
|
|
Group: Development/Tools/Navigators
|
|
Url: http://ctags.sourceforge.net/
|
|
Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{ctags_ver}/%{name}-%{ctags_ver}.tar.gz
|
|
Source1: etags-%{etags_ver}.tar.gz
|
|
Source2: README.SuSE
|
|
Patch1: ctags-5.7.diff
|
|
# No resources to make this patch work with ctags-5.8 (applied to ctags-5.7)
|
|
# Anyone is welcome to make it work again.
|
|
Source3: ctags-ycp-parser.diff
|
|
Patch3: ctags-date-time.patch
|
|
Patch4: etags-%{etags_ver}.diff
|
|
Patch5: etags-strcpy-overlap.patch
|
|
Patch6: go-tags.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
CTags (from Darren Hiebert) generates tag files from source code in C,
|
|
C++, Eiffel, Fortran, and Java to be used with vi and its derivatives,
|
|
Emacs, and several other editors.
|
|
|
|
ETags (from GNU Emacs sources) generates tag files from source code in
|
|
Pascal, Cobol, Ada, Perl, LaTeX, Scheme, Emacs Lisp/Common Lisp,
|
|
Postscript, Erlang, Python, Prolog, and most assembler-like syntaxes.
|
|
|
|
%prep
|
|
%setup -q -n ctags-%{ctags_ver} -b 1
|
|
%patch1
|
|
%patch6 -p1
|
|
#%#patch2
|
|
%patch3 -p1
|
|
cd ../etags-%{etags_ver}
|
|
%patch4
|
|
%patch5 -p1
|
|
|
|
%build
|
|
CC=gcc
|
|
CFLAGS="%{optflags} -Wall"
|
|
export CFLAGS CC
|
|
./configure --prefix=/usr --mandir=%{_mandir} --disable-etags
|
|
make %{?_smp_mflags}
|
|
cd ../etags-%{etags_ver}
|
|
CFLAGS="$CFLAGS -DSTDC_HEADERS -DHAVE_UNISTD_H -DHAVE_GETCWD"
|
|
$CC $CFLAGS -o etags etags.c
|
|
$CC $CFLAGS -DCTAGS -o gnuctags etags.c
|
|
|
|
%install
|
|
make install prefix=%{buildroot}/usr mandir=%{buildroot}%{_mandir}
|
|
mkdir -p %{buildroot}%{_docdir}/ctags/Exuberant_Ctags
|
|
install -m 644 COPYING EXTENDING.html FAQ README %{buildroot}%{_docdir}/ctags/Exuberant_Ctags
|
|
install -m 644 %{SOURCE2} %{buildroot}%{_docdir}/ctags
|
|
cd ../etags-%{etags_ver}
|
|
install -m 755 etags gnuctags %{buildroot}%{_prefix}/bin
|
|
install -m 644 etags.1 %{buildroot}%{_mandir}/man1
|
|
ln -sf etags.1.gz %{buildroot}%{_mandir}/man1/gnuctags.1.gz
|
|
install -m 644 ETAGS.README %{buildroot}%{_docdir}/ctags
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%{_bindir}/ctags
|
|
%{_bindir}/gnuctags
|
|
%{_bindir}/etags
|
|
%{_mandir}/man1/ctags.1.gz
|
|
%{_mandir}/man1/gnuctags.1.gz
|
|
%{_mandir}/man1/etags.1.gz
|
|
%{_docdir}/ctags
|
|
|
|
%changelog
|