summaryrefslogtreecommitdiff
path: root/graphics/py-matplotlib
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2014-01-23 18:45:16 +0000
committerwiz <wiz@pkgsrc.org>2014-01-23 18:45:16 +0000
commit2c55a52dccc240adaa1af0eb2e4368b80283c209 (patch)
tree9cad36cb5d6fd85ad165d380187aec0eebca0d5b /graphics/py-matplotlib
parentc39388bfea375457e5ecae08a70ca48c3a51da16 (diff)
downloadpkgsrc-2c55a52dccc240adaa1af0eb2e4368b80283c209.tar.gz
Removed unused patch
Diffstat (limited to 'graphics/py-matplotlib')
-rw-r--r--graphics/py-matplotlib/patches/patch-aa32
1 files changed, 0 insertions, 32 deletions
diff --git a/graphics/py-matplotlib/patches/patch-aa b/graphics/py-matplotlib/patches/patch-aa
deleted file mode 100644
index 9167c5547d1..00000000000
--- a/graphics/py-matplotlib/patches/patch-aa
+++ /dev/null
@@ -1,32 +0,0 @@
-$NetBSD: patch-aa,v 1.10 2012/04/17 17:17:03 drochner Exp $
-
---- setupext.py.orig 2011-10-06 14:50:23.000000000 +0000
-+++ setupext.py
-@@ -221,12 +221,7 @@ sysconfig.customize_compiler = my_custom
-
-
- def run_child_process(cmd):
-- p = subprocess.Popen(cmd, shell=True,
-- stdin=subprocess.PIPE,
-- stdout=subprocess.PIPE,
-- stderr=subprocess.STDOUT,
-- close_fds=(sys.platform != 'win32'))
-- return p.stdin, p.stdout
-+ return None, os.popen(cmd + " 2>&1")
-
- class CleanUpFile:
- """CleanUpFile deletes the specified filename when self is destroyed."""
-@@ -364,11 +359,8 @@ def check_for_libpng():
- return True
-
- def add_base_flags(module):
-- incdirs = filter(os.path.exists,
-- [os.path.join(p, 'include') for p in basedirlist ])
-- libdirs = filter(os.path.exists,
-- [os.path.join(p, 'lib') for p in basedirlist ]+
-- [os.path.join(p, 'lib64') for p in basedirlist ] )
-+ 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('.')