mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 22:00:31 -04:00
ChangeLog: http://www.nongnu.org/duplicity/CHANGELOG PR: ports/118333 Submitted by: Peter Schuller <peter.schuller@infidyne.com>
22 lines
665 B
Python
22 lines
665 B
Python
--- setup.py.orig Wed Nov 28 19:09:07 2007
|
|
+++ setup.py Thu Nov 29 20:00:05 2007
|
|
@@ -21,6 +21,10 @@
|
|
|
|
incdir_list = libdir_list = None
|
|
|
|
+LOCALBASE = os.environ.get("LOCALBASE", "/usr/local")
|
|
+incdir_list = ['%s/include' % LOCALBASE]
|
|
+libdir_list = ['%s/lib/' % LOCALBASE]
|
|
+
|
|
if os.name == 'posix':
|
|
LIBRSYNC_DIR = os.environ.get('LIBRSYNC_DIR', '')
|
|
args = sys.argv[:]
|
|
@@ -49,7 +53,7 @@
|
|
libraries=["rsync"])],
|
|
scripts = ['rdiffdir', 'duplicity'],
|
|
data_files = [('share/man/man1', ['duplicity.1', 'rdiffdir.1']),
|
|
- ('share/doc/duplicity-%s' % version_string,
|
|
+ ('share/doc/duplicity',
|
|
['COPYING', 'README', 'CHANGELOG'])])
|
|
|
|
|