summaryrefslogtreecommitdiff
path: root/sysutils/rdiff-backup-devel/files
diff options
context:
space:
mode:
authorSam Lawrance <lawrance@FreeBSD.org>2005-10-08 07:09:49 +0000
committerSam Lawrance <lawrance@FreeBSD.org>2005-10-08 07:09:49 +0000
commitef8a4adcd396cb44bdcffd9880de30b5258bb2f8 (patch)
treebf566cefe93d648a61320dda51e1ded5ed1dd462 /sysutils/rdiff-backup-devel/files
parentThe RABL (pronounced "rabble") server is a statistical, machine-automated and (diff)
- Upgrade rdiff-backup to 1.0.1, which is the logical next version for both
rdiff-backup and rdiff-backup-devel. - Remove rdiff-backup-devel and add an entry to MOVED to migrate users to rdiff-backup. - Add an UPDATING to notify users about the incompatibility between the last version of rdiff-backup and version 1.0.1 PR: ports/86108 Submitted by: Vasil Dimov <vd@datamax.bg> Approved by: Steve Clement <steve@ion.lu> (maintainer, rdiff-backup) Peter Schuller <peter.schuller@infidyne.com> (maintainer, rdiff-backup-devel) Discussed with: submitter and a couple of other rdiff-backup users
Notes
Notes: svn path=/head/; revision=144554
Diffstat (limited to 'sysutils/rdiff-backup-devel/files')
-rw-r--r--sysutils/rdiff-backup-devel/files/patch-setup.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/sysutils/rdiff-backup-devel/files/patch-setup.py b/sysutils/rdiff-backup-devel/files/patch-setup.py
deleted file mode 100644
index f704a62d2a40..000000000000
--- a/sysutils/rdiff-backup-devel/files/patch-setup.py
+++ /dev/null
@@ -1,30 +0,0 @@
---- setup.py.orig Thu Jun 26 15:27:30 2003
-+++ setup.py Thu Jul 3 15:09:19 2003
-@@ -41,6 +41,10 @@
- if '-lrsync' in LIBS:
- libname = []
-
-+LOCALBASE = os.getenv("LOCALBASE", "/usr/local")
-+include_dirs = ["%s/include" % LOCALBASE]
-+library_dirs = ["%s/lib" % LOCALBASE]
-+
- setup(name="rdiff-backup",
- version=version_string,
- description="Local/remote mirroring+incremental backup",
-@@ -51,12 +55,9 @@
- ext_modules = [Extension("rdiff_backup.C", ["cmodule.c"]),
- Extension("rdiff_backup._librsync",
- ["_librsyncmodule.c"],
-- include_dirs=incdir_list,
-- library_dirs=libdir_list,
-- libraries=libname,
-- extra_link_args=lflags_arg)],
-+ libraries=["rsync"],
-+ include_dirs=include_dirs,
-+ library_dirs=library_dirs)],
- scripts = ['rdiff-backup'],
-- data_files = [('share/man/man1', ['rdiff-backup.1']),
-- ('share/doc/rdiff-backup-%s' % (version_string,),
-- ['CHANGELOG', 'COPYING', 'README', 'FAQ.html'])])
-+)
-