diff options
author | thierry <thierry@FreeBSD.org> | 2006-03-20 05:25:59 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2006-03-20 05:25:59 +0800 |
commit | a679f92ff8663b2489dca3bf3f46086e8e9ff6be (patch) | |
tree | 1725dd26ddd11c91faa2bc1c3b24914c6ce2f25d /math/k3dsurf | |
parent | 42bb5d556c991e6a10c145de2d88a708ae1999fe (diff) | |
download | freebsd-ports-graphics-a679f92ff8663b2489dca3bf3f46086e8e9ff6be.tar.gz freebsd-ports-graphics-a679f92ff8663b2489dca3bf3f46086e8e9ff6be.tar.zst freebsd-ports-graphics-a679f92ff8663b2489dca3bf3f46086e8e9ff6be.zip |
Mark BROKEN on FreeBSD-4.
Reported by: pointyhat via Kris
Diffstat (limited to 'math/k3dsurf')
-rw-r--r-- | math/k3dsurf/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/math/k3dsurf/Makefile b/math/k3dsurf/Makefile index 783a7832b9f..3cb9a357192 100644 --- a/math/k3dsurf/Makefile +++ b/math/k3dsurf/Makefile @@ -26,10 +26,16 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} PLIST_FILES= bin/k3dsurf +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500035 +BROKEN= Does not compile with gcc-2.95 +.endif + pre-build: cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} qmake do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bin/k3dsurf ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> |