summaryrefslogtreecommitdiff
path: root/graphics/py-matplotlib
diff options
context:
space:
mode:
authorepg <epg>2009-01-05 06:50:23 +0000
committerepg <epg>2009-01-05 06:50:23 +0000
commit11052d48aa11f9d83227aac3f6a81635eb9c24f7 (patch)
tree064b7f63619895e8fc57c271b56a7b3af8edf482 /graphics/py-matplotlib
parentb0be2ff4e1b6b3e20e3129029be2cb9a4f16dfbd (diff)
downloadpkgsrc-11052d48aa11f9d83227aac3f6a81635eb9c24f7.tar.gz
Fix patch-aa to setup.py: incdirs and libdirs are lists of strings, not
just strings.
Diffstat (limited to 'graphics/py-matplotlib')
-rw-r--r--graphics/py-matplotlib/distinfo4
-rw-r--r--graphics/py-matplotlib/patches/patch-aa6
2 files changed, 5 insertions, 5 deletions
diff --git a/graphics/py-matplotlib/distinfo b/graphics/py-matplotlib/distinfo
index 77d9536d794..3329535c247 100644
--- a/graphics/py-matplotlib/distinfo
+++ b/graphics/py-matplotlib/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.7 2008/12/19 22:35:41 markd Exp $
+$NetBSD: distinfo,v 1.8 2009/01/05 06:50:23 epg Exp $
SHA1 (matplotlib-0.98.0.tar.gz) = ce19f2fc7b1d66329e904171b04a2334bcc8400f
RMD160 (matplotlib-0.98.0.tar.gz) = 59d429bb63ebc0fb755bd0a72e890e95a7c5d65c
Size (matplotlib-0.98.0.tar.gz) = 4219634 bytes
-SHA1 (patch-aa) = eed9af2773cdca1e5451fd730e4b5a2a44c9efb1
+SHA1 (patch-aa) = d4d8dc6cf20e0de84fad772681f7abce784cde28
diff --git a/graphics/py-matplotlib/patches/patch-aa b/graphics/py-matplotlib/patches/patch-aa
index 74b1a70cf56..2a3d59c6e35 100644
--- a/graphics/py-matplotlib/patches/patch-aa
+++ b/graphics/py-matplotlib/patches/patch-aa
@@ -1,4 +1,4 @@
-$NetBSD: patch-aa,v 1.4 2008/12/19 22:35:41 markd Exp $
+$NetBSD: patch-aa,v 1.5 2009/01/05 06:50:23 epg Exp $
--- setupext.py.orig 2008-05-30 10:47:10.000000000 +1200
+++ setupext.py
@@ -26,8 +26,8 @@ $NetBSD: patch-aa,v 1.4 2008/12/19 22:35:41 markd Exp $
- libdirs = filter(os.path.exists,
- [os.path.join(p, 'lib') for p in basedir[sys.platform] ]+
- [os.path.join(p, 'lib64') for p in basedir[sys.platform] ] )
-+ incdirs = os.path.join(os.environ['LOCALBASE'], 'include')
-+ libdirs = os.path.join(os.environ['LOCALBASE'], 'lib')
++ incdirs = [os.path.join(os.environ['LOCALBASE'], 'include')]
++ libdirs = [os.path.join(os.environ['LOCALBASE'], 'lib')]
module.include_dirs.extend(incdirs)
module.include_dirs.append('.')