diff options
Diffstat (limited to 'math/py-Numeric/Makefile')
-rw-r--r-- | math/py-Numeric/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/math/py-Numeric/Makefile b/math/py-Numeric/Makefile index 5d46226c354..470957a9303 100644 --- a/math/py-Numeric/Makefile +++ b/math/py-Numeric/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.40 2006/02/15 17:37:08 drochner Exp $ +# $NetBSD: Makefile,v 1.41 2006/03/01 19:15:07 minskim Exp $ DISTNAME= Numeric-24.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -9,10 +9,16 @@ MAINTAINER= tsarna@NetBSD.org HOMEPAGE= http://numeric.scipy.org/ COMMENT= Adds multidimensional numeric arrays to Python - PYDISTUTILSPKG= yes PYBINMODULE= yes PYSETUP= setup.py +.if exists(/System/Library/Frameworks/vecLib.framework) +BUILDLINK_PASSTHRU_DIRS+= /System/Library/Frameworks/vecLib.framework/Headers +PLIST_SUBST+= DOTBLAS="" +.else +PLIST_SUBST+= DOTBLAS="@comment " +.endif + .include "../../lang/python/extension.mk" .include "../../mk/bsd.pkg.mk" |