diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-12-25 17:26:28 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-12-25 17:26:28 +0000 |
commit | 2fa45f450cd6f26cdac89134ef5c36c54ad7e0ef (patch) | |
tree | 48b00bdff59e5cad712c166e5407a7f99a542165 /cad/openscad/Makefile | |
parent | 75c08fe6647c9ab196c4b5f41c272fb4be4a8138 (diff) |
- Mark broken in FreeBSD 11.x+ i386: this port can't build while cgal is built with gcc and boost is built with clang
Approved by: portmgr blanket
Notes
Notes:
svn path=/head/; revision=429444
Diffstat (limited to 'cad/openscad/Makefile')
-rw-r--r-- | cad/openscad/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cad/openscad/Makefile b/cad/openscad/Makefile index dc6f1db37f9f..7cf04e7eecbf 100644 --- a/cad/openscad/Makefile +++ b/cad/openscad/Makefile @@ -36,7 +36,13 @@ QMAKE_ARGS+= VERSION=${PORTVERSION} \ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} post-patch: - ${REINPLACE_CMD} -e 's,share/man,man,' \ + @${REINPLACE_CMD} -e 's,share/man,man,' \ ${WRKSRC}/openscad.pro +.include <bsd.port.options.mk> + +.if ${ARCH} == i386 && ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000 +BROKEN= does not build (libstdc++/libc++ incompatibility in cgal/boost) +.endif + .include <bsd.port.mk> |