]> git.pld-linux.org Git - packages/cvs-nserver.git/commitdiff
- adapterized and partialy rewrited.
authorkloczek <kloczek@pld-linux.org>
Thu, 27 Jul 2000 19:07:47 +0000 (19:07 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    cvs-nserver.spec -> 1.3

cvs-nserver.spec

index cdc91f25f9e0c2de8e78dda0d11f8951b85c80df..7049c01fd93da6541cbeb64003f04f01b4babbe8 100644 (file)
@@ -1,60 +1,65 @@
-Summary: Concurrent Versions System
-Name: cvs-nserver
-Version: @VERSION@
-Release: 1
-Copyright: GPL
-Group: Development/Version Control
-Source: http://alexm.here.ru/cvs-nserver/download/cvs-nserver-@VERSION@.tar.gz
-Packager: Alexey Mahotkin <alexm@hsys.msk.ru>
-Prefix: /usr
-BuildRoot: /var/tmp/cvs-nserver
+Summary:       Concurrent Versions System
+Name:          cvs-nserver
+Version:       1.10.8.3
+Release:       1
+License:       GPL
+Group:         Development/Version Control
+Group(pl):     Programowanie/ZarzĀ±dzanie wersjami
+Source0:       http://alexm.here.ru/cvs-nserver/download/%{name}-%{version}.tar.gz
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
 CVS is a version control system, which allows you to keep old versions
 of files (usually source code), keep a log of who, when, and why
-changes occurred, etc., like RCS or SCCS.  Unlike the simpler systems,
+changes occurred, etc., like RCS or SCCS. Unlike the simpler systems,
 CVS does not just operate on one file at a time or one directory at a
 time, but operates on hierarchical collections of directories
-consisting of version controlled files.  CVS helps to manage releases
+consisting of version controlled files. CVS helps to manage releases
 and to control the concurrent editing of source files among multiple
-authors.  CVS allows triggers to enable/log/control various
-operations and works well over a wide area network.
+authors. CVS allows triggers to enable/log/control various operations
+and works well over a wide area network.
 
 %prep
-%setup
+%setup -q
 
 %build
-./configure --prefix=$RPM_BUILD_ROOT/usr --enable-pam
-make CFLAGS="$RPM_OPT_FLAGS" LDFLAGS=-s 
+LDFLAGS="-s"; export LDFLAGS
+%configure \
+       --enable-pam
+%{__make}
 
 %install
-make installdirs
-make PAMDIR=$RPM_BUILD_ROOT/etc/pam.d install
-make install-setuid
-rm -f $RPM_BUILD_ROOT/usr/info/cvs*
-make install-info
-gzip -9nf $RPM_BUILD_ROOT/usr/info/cvs*
+rm -rf $RPM_BUILD_ROOT
+%{__make} installdirs
+%{__make} PAMDIR=$RPM_BUILD_ROOT/etc/pam.d install
+%{__make} install-setuid
+rm -f $RPM_BUILD_ROOT%{_prefix}/info/cvs*
+%{__make} install-info
+
+gzip -9nf $RPM_BUILD_ROOT{%{_infodir}/*,%{_mandir}/man?/*} \
+       BUGS FAQ HACKING MINOR-BUGS NEWS PROJECTS README TESTS TODO
+
+%clean
+rm -rf $RPM_BUILD_ROOT
 
 %files
-%defattr(-, root, root)
-%doc BUGS COPYING COPYING.LIB FAQ HACKING
-%doc INSTALL MINOR-BUGS NEWS PROJECTS README TESTS TODO
-/usr/bin/cvs
-/usr/bin/cvschkpw
-%attr(4750, cvsadmin, cvs)
-/usr/bin/cvspasswd
-/usr/bin/cvs-pserver
-/usr/bin/cvs-nserver
-/usr/bin/checkpassword
-/usr/bin/checkpassword-pam
-/usr/bin/cvsbug
-/usr/bin/rcs2log
+%defattr(644,root,root,755)
+%doc *.gz
+%attr(755,root,root) %{_bindir}/cvs
+%attr(755,root,root) %{_bindir}/cvschkpw
+%attr(755,root,root) %{_bindir}/cvspasswd
+%attr(755,root,root) %{_bindir}/cvs-pserver
+%attr(755,root,root) %{_bindir}/cvs-nserver
+%attr(755,root,root) %{_bindir}/checkpassword
+%attr(755,root,root) %{_bindir}/checkpassword-pam
+%attr(755,root,root) %{_bindir}/cvsbug
+%attr(755,root,root) %{_bindir}/rcs2log
 /etc/pam.d/cvspserver
-/usr/man/man1/cvs.1
-/usr/man/man5/cvs.5
-/usr/man/man8/cvsbug.8
-/usr/man/man8/cvs-nserver.8
-/usr/man/man8/cvs-pserver.8
-/usr/man/man8/cvs-server.8
-/usr/info/cvs*
-/usr/lib/cvs
+%{_mandir}/man1/cvs.1
+%{_mandir}/man5/cvs.5
+%{_mandir}/man8/cvsbug.8
+%{_mandir}/man8/cvs-nserver.8
+%{_mandir}/man8/cvs-pserver.8
+%{_mandir}/man8/cvs-server.8
+%{_infodir}/cvs*
+%{_libdir}/cvs
This page took 0.139828 seconds and 4 git commands to generate.