diff options
author | vd <vd@FreeBSD.org> | 2009-01-10 23:04:38 +0800 |
---|---|---|
committer | vd <vd@FreeBSD.org> | 2009-01-10 23:04:38 +0800 |
commit | 8b10f5cd52092177a6bf45433b520bb89967d640 (patch) | |
tree | da8f17399c1d030b5eaf406286bab073a0d1cfe0 /sysutils/duplicity/files | |
parent | 181677aee6c35370e4491b39a81e52afc069a220 (diff) | |
download | freebsd-ports-gnome-8b10f5cd52092177a6bf45433b520bb89967d640.tar.gz freebsd-ports-gnome-8b10f5cd52092177a6bf45433b520bb89967d640.tar.zst freebsd-ports-gnome-8b10f5cd52092177a6bf45433b520bb89967d640.zip |
* Upgrade sysutils/duplicity from 0.5.03 to 0.5.06
* Install all the files that the port would install into doc/ if we didn't
modify its installation script
* Leave the installator to install the man pages by itself, only tune the
installation directory
ChangeLog:
http://duplicity.nongnu.org/CHANGELOG
Diffstat (limited to 'sysutils/duplicity/files')
-rw-r--r-- | sysutils/duplicity/files/patch-setup.py | 33 |
1 files changed, 20 insertions, 13 deletions
diff --git a/sysutils/duplicity/files/patch-setup.py b/sysutils/duplicity/files/patch-setup.py index ee0e5c6e6cdb..51f954da734b 100644 --- a/sysutils/duplicity/files/patch-setup.py +++ b/sysutils/duplicity/files/patch-setup.py @@ -1,8 +1,8 @@ ---- setup.py.orig 2008-09-21 17:21:44.000000000 +0300 -+++ setup.py 2008-09-28 22:24:48.000000000 +0300 -@@ -21,6 +21,10 @@ +--- setup.py.orig 2009-01-09 16:05:11.000000000 +0200 ++++ setup.py 2009-01-10 16:06:40.000000000 +0200 +@@ -12,6 +12,10 @@ - incdir_list = libdir_list = None + incdir_list = libdir_list = None +LOCALBASE = os.environ.get("LOCALBASE", "/usr/local") +incdir_list = ['%s/include' % LOCALBASE] @@ -11,14 +11,21 @@ if os.name == 'posix': LIBRSYNC_DIR = os.environ.get('LIBRSYNC_DIR', '') args = sys.argv[:] -@@ -48,9 +52,6 @@ - include_dirs=incdir_list, - library_dirs=libdir_list, - libraries=["rsync"])], -- scripts = ['rdiffdir', 'duplicity'], -- data_files = [('share/man/man1', ['duplicity.1', 'rdiffdir.1']), -- ('share/doc/duplicity-%s' % version_string, -- ['COPYING', 'README', 'CHANGELOG'])]) -+ scripts = ['rdiffdir', 'duplicity']) +@@ -23,16 +27,9 @@ + incdir_list = [os.path.join(LIBRSYNC_DIR, 'include')] + libdir_list = [os.path.join(LIBRSYNC_DIR, 'lib')] +-data_files = [('share/man/man1', ++data_files = [('man/man1', + ['duplicity.1', + 'rdiffdir.1']), +- ('share/doc/duplicity-%s' % version_string, +- ['COPYING', +- 'CVS-README', +- 'LOG-README', +- 'README', +- 'tarfile-LICENSE', +- 'CHANGELOG']), + ] + assert os.path.exists("po"), "Missing 'po' directory." |