]> git.pld-linux.org Git - packages/rsync.git/blob - rsync.spec
- commited changes from PLD devel,
[packages/rsync.git] / rsync.spec
1 Summary:        Program for efficient remote updates of files.
2 Summary(pl):    Program efektywnego modyfikowania plików na zdalnym komputerze.
3 Name:           rsync
4 Version:        2.3.0
5 Release:        1
6 Copyright:      GPL
7 Group:          Applications/Networking
8 Source:         ftp://samba.anu.edu.au/pub/rsync/%{name}-%{version}.tar.gz
9 URL:            http://samba.anu.edu.au/rsync/
10 BuildRoot:      /tmp/%{name}-%{version}-root
11
12 %description
13 rsync is a replacement for rcp that has many more features.
14
15 rsync uses the "rsync algorithm" which provides a very fast method for
16 bringing remote files into sync. It does this by sending just the
17 differences in the files across the link, without requiring that both
18 sets of files are present at one of the ends of the link beforehand.
19
20 A technical report describing the rsync algorithm is included with
21 this package. 
22
23 %description -l pl
24 Rsync jest zamiennikiem programu rcp i jest bardziej rozbudowan± sk³adniê
25 poleceñ. Program ten u¿ywa efektywnego algorytmu "rsync" w czasie komunikacji 
26 i transportu plików do systemu zdalnego. Dokumentacja techniczna nowego 
27 algorytmu zosta³a równie¿ do³±czona do pakietu.
28
29 %prep
30 %setup -q
31
32 %build
33 CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="-s" \
34 ./configure \
35         --prefix=/usr
36 make 
37
38 %install
39 rm -rf $RPM_BUILD_ROOT
40
41 make install prefix=$RPM_BUILD_ROOT/usr
42 #install -d $RPM_BUILD_ROOT/usr/{bin,man/man{1,5}}
43 #install -s rsync $RPM_BUILD_ROOT/usr/bin
44 #install rsync.1 $RPM_BUILD_ROOT/usr/man/man1
45 #install rsyncd.conf.5 $RPM_BUILD_ROOT/usr/man/man5
46
47 gzip -9nf $RPM_BUILD_ROOT/usr/man/man*/* \
48         README
49
50 %clean
51 rm -rf $RPM_BUILD_ROOT
52
53 %files
54 %defattr(644,root,root,755)
55 %doc README
56 %attr(755,root,root) /usr/bin/rsync
57 /usr/man/man[15]/*
58
59 %changelog
60 * Fri Mar 19 1999 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
61   [2.3.0-1]
62 - added gzipping man pages,
63 - removed man group from man pages.
64
65 * Sat Nov 08 1998 Wojtek ¦lusarczyk <wojtek@shadow.eu.org>
66   [2.2.0-1d]
67 - translation modified for pl,
68 - minor changes.
69
70 * Fri Sep 18 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
71   [2.1.1-1]
72 - added -q %setup parameter,
73 - changed Buildroot to /tmp/%%{name}-%%{version}-root,
74 - added using %%{name} and %%{version} in Source,
75 - added using $RPM_OPT_FLAGS during compile,
76 - added full %attr description in %files.
77
78 * Thu Jun 18 1998 Douglas N. Arnold <dna@math.psu.edu>
79 Upgrade to rsync version 2.0.18
80
81 * Sat May 16 1998 John H Terpstra <jht@aquasoft.com.au>
82   Upgraded to Rsync 2.0.6
83     -new feature anonymous rsync
84
85 * Mon Apr  6 1998 Douglas N. Arnold <dna@math.psu.edu>
86 Upgrade to rsync version 1.7.2.
87
88 * Sun Mar  1 1998 Douglas N. Arnold <dna@math.psu.edu>
89 Built 1.6.9-1 based on the 1.6.3-2 spec file of John A. Martin.
90 Changes from 1.6.3-2 packaging: added latex and dvips commands
91 to create tech_report.ps.
92
93 * Mon Aug 25 1997 John A. Martin <jam@jamux.com>
94 Built 1.6.3-2 after finding no rsync-1.6.3-1.src.rpm although there
95 was an ftp://ftp.redhat.com/pub/contrib/alpha/rsync-1.6.3-1.alpha.rpm
96 showing no packager nor signature but giving 
97 "Source RPM: rsync-1.6.3-1.src.rpm".
98
99 Changes from 1.6.2-1 packaging: added '$RPM_OPT_FLAGS' to make, strip
100 to '%build', removed '%prefix'.
101
102 * Thu Apr 10 1997 Michael De La Rue <miked@ed.ac.uk>
103 rsync-1.6.2-1 packaged.  (This entry by jam to credit Michael for the
104 previous package(s).)
This page took 0.138935 seconds and 4 git commands to generate.