the Fink project is an effort to port
popular Unix programs to Mac OS X
Package: rdiff-backup
Version: 1.2.8
Revision: 2
Description: Backup using mirrors and incrementals
License: GPL
Homepage: http://www.nongnu.org/rdiff-backup/
Maintainer: Evi Vanoost
# Dependencies.
BuildDepends: librsync (>= 0.9.7-1003), fink (>= 0.24.12)
Depends: python27, librsync-shlibs (>= 0.9.7-1003)
# Unpack Phase.
Source: http://savannah.nongnu.org/download/%n/%n-%v.tar.gz
Source-MD5: 1a94dc537fcf74d6a3a80bd27808e77b
# Patch Phase.
PatchFile: %n.patch
PatchFile-MD5: b15ae5ecf1d6f4f69c7fb7704455a835
# Compile Phase.
CompileScript: %p/bin/python2.7 setup.py build
# Install Phase.
InstallScript: %p/bin/python2.7 setup.py install --root=%d
DocFiles: CHANGELOG COPYING FAQ.html README
# Documentation.
DescDetail: <<
rdiff-backup backs up one directory to another, possibly over a
network. The target directory ends up a copy of the source directory,
but extra reverse diffs are stored in a special subdirectory of that
target directory, so you can still recover files lost some time ago.
The idea is to combine the best features of a mirror and an
incremental backup. rdiff-backup also preserves subdirectories, hard
links, dev files, permissions, uid/gid ownership, and modification
times. Also, rdiff-backup can operate in a bandwidth efficient manner
over a pipe, like rsync. Thus you can use rdiff-backup and ssh to
securely back a hard drive up to a remote location, and only the
differences will be transmitted. Finally, rdiff-backup is easy to use
and settings have sensible defaults.
<<
--- rdiff-backup-1.2.8/setup.py.orig 2009-03-16 15:36:21.000000000 +0100
+++ rdiff-backup-1.2.8/setup.py 2009-10-28 15:58:06.000000000 +0100
@@ -73,9 +73,6 @@
libraries=libname,
extra_link_args=lflags_arg)],
scripts = ['rdiff-backup', 'rdiff-backup-statistics'],
- data_files = [('share/man/man1', ['rdiff-backup.1',
- 'rdiff-backup-statistics.1']),
- ('share/doc/rdiff-backup-%s' % (version_string,),
- ['CHANGELOG', 'COPYING', 'README', 'FAQ.html'])],
+ data_files = [('share/man/man1', ['rdiff-backup.1','rdiff-backup-statistics.1'])],
**extra_options)