diff options
author | kris <kris@FreeBSD.org> | 2004-03-06 23:24:07 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-06 23:24:07 +0000 |
commit | 62a559bce667331bed7fdf3ad05d480323c6eac8 (patch) | |
tree | 0f2f2fb260cd0aa889df67d6ab3c6267a0e6774b /science | |
parent | 33e0d2659453df67896988cc8c773ef85c2e4832 (diff) | |
download | FreeBSD-ports-62a559bce667331bed7fdf3ad05d480323c6eac8.zip FreeBSD-ports-62a559bce667331bed7fdf3ad05d480323c6eac8.tar.gz |
BROKEN on !i386 and !alpha: Does not compile
Diffstat (limited to 'science')
-rw-r--r-- | science/hdf/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/science/hdf/Makefile b/science/hdf/Makefile index 9e50a0d..00c7fef 100644 --- a/science/hdf/Makefile +++ b/science/hdf/Makefile @@ -24,6 +24,12 @@ INSTALLS_SHLIB= yes MAKE_ARGS= PREFIX="${PREFIX}" -j 2 +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" && ${ARCH} != "alpha" +BROKEN= "Does not compile on !i386 and !alpha" +.endif + post-patch: ${RM} -rf ${WRKSRC}/hdf/jpeg ${RM} -rf ${WRKSRC}/hdf/zlib @@ -37,4 +43,4 @@ do-configure: test: build cd ${WRKSRC}; ${MAKE} test -.include <bsd.port.mk> +.include <bsd.port.post.mk> |