diff options
author | tg <tg@FreeBSD.org> | 2000-08-18 19:55:51 +0800 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 2000-08-18 19:55:51 +0800 |
commit | 5f594c2505db9e36d2af16267759aab44a61d468 (patch) | |
tree | b606b8573f1ef969774845ba6a9fe70d7685744d /graphics/sketch/files | |
parent | 70aa8964792e6005cb9658b7cec20a9884197c26 (diff) | |
download | freebsd-ports-gnome-5f594c2505db9e36d2af16267759aab44a61d468.tar.gz freebsd-ports-gnome-5f594c2505db9e36d2af16267759aab44a61d468.tar.zst freebsd-ports-gnome-5f594c2505db9e36d2af16267759aab44a61d468.zip |
Upgrade to 0.6.8.
Diffstat (limited to 'graphics/sketch/files')
-rw-r--r-- | graphics/sketch/files/patch-aa | 31 |
1 files changed, 22 insertions, 9 deletions
diff --git a/graphics/sketch/files/patch-aa b/graphics/sketch/files/patch-aa index 47aa57fada9c..3d49ae62f123 100644 --- a/graphics/sketch/files/patch-aa +++ b/graphics/sketch/files/patch-aa @@ -1,12 +1,25 @@ ---- setup.py.orig Thu Feb 10 19:01:49 2000 -+++ setup.py Thu Apr 27 15:56:03 2000 -@@ -233,8 +233,7 @@ - flags['sketch']['imaging-include'] = '-I' + dir - - if setup == None: -- setup = os.path.join(sys.prefix, 'lib/python' + sys.version[:3], -- 'config/Setup') -+ setup = '%%PORTSDIR%%/x11-toolkits/py-tkinter/files/Setup' +--- setup.py.orig Tue Jun 27 01:06:41 2000 ++++ setup.py Thu Aug 17 19:16:43 2000 +@@ -238,8 +238,10 @@ + 'python' + sys.version[:3], 'config') + setup = os.path.join(configdir, 'Setup') + setup_local = os.path.join(configdir, 'Setup.local') ++ setup_tkinter = '%%PORTSDIR%%/x11-toolkits/py-tkinter/files/Setup' + else: + setup_local = '' ++ setup_tkinter = '' print 'reading configuration from', setup, '...', configs = extract_config(setup) print 'done' +@@ -247,6 +249,11 @@ + if setup_local: + print 'reading additional configuration from', setup_local, '...', + configs = extract_config(setup_local, configs) ++ print 'done' ++ ++ if setup_tkinter: ++ print 'reading additional configuration from', setup_tkinter, '...', ++ configs = extract_config(setup_tkinter, configs) + print 'done' + + if not configs.has_key('_tkinter'): |