diff options
author | swills <swills@FreeBSD.org> | 2015-10-17 20:59:36 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2015-10-17 20:59:36 +0800 |
commit | df39c501818fbbe878e4e53215420b783d41843c (patch) | |
tree | 48c015869957fc593ea3706e331fcf9a154e3c36 /lang/x10 | |
parent | df28e0d05c013ec1b518494753bfcc2e600e4232 (diff) | |
download | freebsd-ports-gnome-df39c501818fbbe878e4e53215420b783d41843c.tar.gz freebsd-ports-gnome-df39c501818fbbe878e4e53215420b783d41843c.tar.zst freebsd-ports-gnome-df39c501818fbbe878e4e53215420b783d41843c.zip |
lang/x10: mark broken with JDK8
Diffstat (limited to 'lang/x10')
-rw-r--r-- | lang/x10/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lang/x10/Makefile b/lang/x10/Makefile index ea02f20a0023..1dbdec82a82a 100644 --- a/lang/x10/Makefile +++ b/lang/x10/Makefile @@ -41,7 +41,11 @@ WRKSRC= ${WRKDIR}/x10.dist OPTIONS_DEFINE= EXAMPLES -.include <bsd.port.options.mk> +.include <bsd.port.pre.mk> + +.if ${JAVA_PORT_VERSION:M1.8.*} +BROKEN= Does not build with JDK 1.8 +.endif post-patch: ${REINPLACE_CMD} -e 's/value="make"/value="gmake"/g' \ @@ -72,4 +76,4 @@ do-install: ${CP} -R ${WRKSRC}/samples/* ${STAGEDIR}${EXAMPLESDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |