source: projects/specs/branches/6/g/global/global-vl.spec @ 6181

Revision 6181, 3.1 KB checked in by inagaki, 12 years ago (diff)

updated: global, ocaml, facile

Line 
1#%define priority 30
2
3Summary: GNU GLOBAL is a source code tag system
4Summary(ja): GNU GLOBAL ソースコードタグシステム
5Name: global
6Version: 6.2.2
7Release: 1%{?_dist_release}
8
9License: GPLv3
10Group: Development/Tools
11URL: http://www.gnu.org/software/global/
12
13Source0: ftp://ftp.gnu.org/pub/gnu/global/%{name}-%{version}.tar.gz
14
15BuildRoot: %{_tmppath}/%{name}-%{version}-root
16BuildRequires: ncurses-devel
17Requires: perl
18Requires(post,preun): /sbin/install-info
19
20Vendor: Project Vine
21Distribution: Vine Linux
22
23%description
24GNU GLOBAL is a source code tag system that works the same way across diverse
25environments. It supports C, C++, Yacc, Java and PHP4 source code.
26
27%description -l ja
28GNU GLOBAL はソースコードに索引付けを行います.
29C, C++, Yacc, Java, PHP4 のソースコードをサポートします.
30
31%prep
32%setup -q
33
34%build
35%configure --disable-static
36make
37
38%install
39rm -rf $RPM_BUILD_ROOT
40make DESTDIR=$RPM_BUILD_ROOT install
41
42pushd $RPM_BUILD_ROOT%{_datadir}/gtags
43rm -f AUTHORS BOKIN_* COPYING ChangeLog DONORS FAQ \
44    INSTALL LICENSE NEWS README THANKS
45popd
46
47rm -f $RPM_BUILD_ROOT%{_libdir}/gtags/*.la
48rm -f $RPM_BUILD_ROOT%{_infodir}/dir
49
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53%post
54/sbin/install-info %{_infodir}/global.info.* %{_infodir}/dir
55
56%preun
57if [ $1 = 0 ]; then
58    /sbin/install-info --delete %{_infodir}/global.info.* %{_infodir}/dir
59fi
60
61%files
62%defattr(-,root,root)
63%doc AUTHORS BOKIN_* COPYING ChangeLog DONORS FAQ INSTALL
64%doc LICENSE NEWS README THANKS
65%doc gtags.conf gtags.el gtags.pl gtags.vim
66%{_bindir}/*
67%{_libdir}/gtags/*.so
68%{_mandir}/man?/*
69%{_datadir}/gtags
70%{_infodir}/global.info*
71
72%changelog
73* Tue May 15 2012 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 6.2.2-1
74- new upstream release
75- added BR: ncurses-devel
76
77* Tue May  4 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.8.2-1
78- new upstream release
79
80* Tue May  4 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.8.2-1
81- new upstream release
82
83* Thu Dec 31 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.7.7-1
84- new upstream release
85
86* Sun May 17 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.7.5-1
87- new upstream release
88- spec in UTF-8
89
90* Mon May 12 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.7.1-1
91- new upstream release
92
93* Fri Jan 18 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.6.2-0vl1
94- new upstream release
95
96* Wed Aug  8 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.6-0vl1
97- new upstream release
98
99* Tue Oct  3 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 5.2-0vl1
100- new upstream release
101
102* Tue Oct 25 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 4.8.7-0vl1
103- new upstream release
104- this version is not necessary to use alternatives
105
106* Wed Aug  6 2003 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 4.6-0vl2
107- use alternatives for gctags
108- fix typo in URL
109
110* Fri Aug  1 2003 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 4.6-0vl1
111- update to 4.6
112- rename gctags.1 to gctags.global.1
113
114* Sat Jul 19 2003 Kunio Murasawa <murasawa@fa2.so-net.ne.jp> 4.5.3-0vl1
115- update to 4.5.3
116- changed URL
117- removed gctags.1* (conflict emacs package)
118
119* Mon May  5 2003 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> 4.5.2-0vl1
120- Initial build.
121
Note: See TracBrowser for help on using the repository browser.