diff options
author | kris <kris@FreeBSD.org> | 2004-09-26 03:15:46 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-09-26 03:15:46 +0000 |
commit | 5e04f302b2e5878a46ac8a71e730cea42710ac6d (patch) | |
tree | 84fef30f3d28b935bf19042a90878e292037314b /math/superlu/Makefile | |
parent | f40ed67e216eca4715c54f0b6489464b8bda2b97 (diff) | |
download | FreeBSD-ports-5e04f302b2e5878a46ac8a71e730cea42710ac6d.zip FreeBSD-ports-5e04f302b2e5878a46ac8a71e730cea42710ac6d.tar.gz |
BROKEN on 5.x: Broken by changes to make(1)
Approved by: portmgr (self)
Diffstat (limited to 'math/superlu/Makefile')
-rw-r--r-- | math/superlu/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/math/superlu/Makefile b/math/superlu/Makefile index af40eaa..c774a1b 100644 --- a/math/superlu/Makefile +++ b/math/superlu/Makefile @@ -28,6 +28,12 @@ ALL_TARGET= superlulib BLAS_LIBS= ${LOCALBASE}/lib/libf77blas.a ${LOCALBASE}/lib/libatlas.a +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Broken by changes to make(1) on FreeBSD >= 5.x" +.endif + post-patch: @${REINPLACE_CMD} -e 's+%%BLAS_LIBS%%+${BLAS_LIBS}+' \ ${WRKSRC}/make.inc @@ -51,4 +57,4 @@ do-install: ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/superlu_ug.ps.gz ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |