summaryrefslogtreecommitdiff
path: root/math/py-Scientific
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2001-05-10 17:03:28 +0000
committerdrochner <drochner@pkgsrc.org>2001-05-10 17:03:28 +0000
commitb9ee1933cef10f318ada5173dfff9cdd4c7a9b23 (patch)
treec1914b62a7e2c31b129aa530f7fb1bb3597a3a80 /math/py-Scientific
parentd9eaa5042cbed7c4981807719256068d1ab25739 (diff)
downloadpkgsrc-b9ee1933cef10f318ada5173dfff9cdd4c7a9b23.tar.gz
set runtime library search path so that libnetcdf is found
Diffstat (limited to 'math/py-Scientific')
-rw-r--r--math/py-Scientific/distinfo4
-rw-r--r--math/py-Scientific/patches/patch-aa14
2 files changed, 13 insertions, 5 deletions
diff --git a/math/py-Scientific/distinfo b/math/py-Scientific/distinfo
index b4523982ed7..dce72ec9911 100644
--- a/math/py-Scientific/distinfo
+++ b/math/py-Scientific/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2001/04/19 08:45:44 agc Exp $
+$NetBSD: distinfo,v 1.3 2001/05/10 17:03:28 drochner Exp $
SHA1 (ScientificPython-2.2.tar.gz) = f1fcf1ef1a54a1fd84b1e5df569dac13a1648225
Size (ScientificPython-2.2.tar.gz) = 335561 bytes
-SHA1 (patch-aa) = 31388d725e97bb28443618dca81d4760512b09e8
+SHA1 (patch-aa) = 1e4efc4a5393d11f7bd30fba229a541dde199b80
diff --git a/math/py-Scientific/patches/patch-aa b/math/py-Scientific/patches/patch-aa
index 21221d63f24..85d7b66d9fd 100644
--- a/math/py-Scientific/patches/patch-aa
+++ b/math/py-Scientific/patches/patch-aa
@@ -1,7 +1,7 @@
-$NetBSD: patch-aa,v 1.1 2001/03/30 22:23:07 jtb Exp $
+$NetBSD: patch-aa,v 1.2 2001/05/10 17:03:28 drochner Exp $
---- setup.py.orig Fri Mar 30 20:58:10 2001
-+++ setup.py
+--- setup.py.orig Thu May 10 18:29:09 2001
++++ setup.py Thu May 10 18:30:26 2001
@@ -7,7 +7,7 @@
# If your netCDF installation is in a non-standard place, set the following
@@ -11,3 +11,11 @@ $NetBSD: patch-aa,v 1.1 2001/03/30 22:23:07 jtb Exp $
if netcdf_prefix is None:
+@@ -28,6 +28,7 @@
+ ['Src/Scientific_netcdf.c'],
+ include_dirs=['Include', netcdf_include],
+ library_dirs=[netcdf_lib],
++ runtime_library_dirs=[netcdf_lib],
+ libraries = ['netcdf'])]
+
+ class modified_install_headers(install_headers):