]> git.pld-linux.org Git - packages/cvs-nserver.git/blob - cvs-nserver.spec
- adapterized and partialy rewrited.
[packages/cvs-nserver.git] / cvs-nserver.spec
1 Summary:        Concurrent Versions System
2 Name:           cvs-nserver
3 Version:        1.10.8.3
4 Release:        1
5 License:        GPL
6 Group:          Development/Version Control
7 Group(pl):      Programowanie/ZarzĀ±dzanie wersjami
8 Source0:        http://alexm.here.ru/cvs-nserver/download/%{name}-%{version}.tar.gz
9 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
10
11 %description
12 CVS is a version control system, which allows you to keep old versions
13 of files (usually source code), keep a log of who, when, and why
14 changes occurred, etc., like RCS or SCCS. Unlike the simpler systems,
15 CVS does not just operate on one file at a time or one directory at a
16 time, but operates on hierarchical collections of directories
17 consisting of version controlled files. CVS helps to manage releases
18 and to control the concurrent editing of source files among multiple
19 authors. CVS allows triggers to enable/log/control various operations
20 and works well over a wide area network.
21
22 %prep
23 %setup -q
24
25 %build
26 LDFLAGS="-s"; export LDFLAGS
27 %configure \
28         --enable-pam
29 %{__make}
30
31 %install
32 rm -rf $RPM_BUILD_ROOT
33 %{__make} installdirs
34 %{__make} PAMDIR=$RPM_BUILD_ROOT/etc/pam.d install
35 %{__make} install-setuid
36 rm -f $RPM_BUILD_ROOT%{_prefix}/info/cvs*
37 %{__make} install-info
38
39 gzip -9nf $RPM_BUILD_ROOT{%{_infodir}/*,%{_mandir}/man?/*} \
40         BUGS FAQ HACKING MINOR-BUGS NEWS PROJECTS README TESTS TODO
41
42 %clean
43 rm -rf $RPM_BUILD_ROOT
44
45 %files
46 %defattr(644,root,root,755)
47 %doc *.gz
48 %attr(755,root,root) %{_bindir}/cvs
49 %attr(755,root,root) %{_bindir}/cvschkpw
50 %attr(755,root,root) %{_bindir}/cvspasswd
51 %attr(755,root,root) %{_bindir}/cvs-pserver
52 %attr(755,root,root) %{_bindir}/cvs-nserver
53 %attr(755,root,root) %{_bindir}/checkpassword
54 %attr(755,root,root) %{_bindir}/checkpassword-pam
55 %attr(755,root,root) %{_bindir}/cvsbug
56 %attr(755,root,root) %{_bindir}/rcs2log
57 /etc/pam.d/cvspserver
58 %{_mandir}/man1/cvs.1
59 %{_mandir}/man5/cvs.5
60 %{_mandir}/man8/cvsbug.8
61 %{_mandir}/man8/cvs-nserver.8
62 %{_mandir}/man8/cvs-pserver.8
63 %{_mandir}/man8/cvs-server.8
64 %{_infodir}/cvs*
65 %{_libdir}/cvs
This page took 0.083964 seconds and 4 git commands to generate.