diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2016-12-25 17:26:28 +0000 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2016-12-25 17:26:28 +0000 |
commit | 7946454b33f046ae0ed1805bd60a14e4b81778c2 (patch) | |
tree | 48b00bdff59e5cad712c166e5407a7f99a542165 | |
parent | c127a18729f2ad3bf8aee078f8004d315db5b575 (diff) | |
download | FreeBSD-ports-7946454b33f046ae0ed1805bd60a14e4b81778c2.zip FreeBSD-ports-7946454b33f046ae0ed1805bd60a14e4b81778c2.tar.gz |
- 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
-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 dc6f1db..7cf04e7 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> |