diff options
-rw-r--r-- | japanese/tk80/Makefile | 4 | ||||
-rw-r--r-- | japanese/tkstep80/Makefile | 4 | ||||
-rw-r--r-- | japanese/xyagamo/Makefile | 8 |
3 files changed, 15 insertions, 1 deletions
diff --git a/japanese/tk80/Makefile b/japanese/tk80/Makefile index 4f5a7e45dc42..c1503ab42952 100644 --- a/japanese/tk80/Makefile +++ b/japanese/tk80/Makefile @@ -37,6 +37,10 @@ INSTALLS_SHLIB= yes .include <bsd.port.pre.mk> +.if ${OSVERSION} > 600006 +BROKEN= "Depends on libxpg4 which was removed from FreeBSD 6.0" +.endif + .if !defined(NOPORTDOCS) post-patch: @${CP} ${FILESDIR}/README.FreeBSD.in ${TOPDIR}/README.FreeBSD.JP.in diff --git a/japanese/tkstep80/Makefile b/japanese/tkstep80/Makefile index 9c322a833cfd..9816931902f7 100644 --- a/japanese/tkstep80/Makefile +++ b/japanese/tkstep80/Makefile @@ -44,6 +44,10 @@ PORTDOCDIR= ${PREFIX}/share/doc/tkstep${TCLVERSION}jp .include <bsd.port.pre.mk> +.if ${OSVERSION} > 600006 +BROKEN= "Depends on libxpg4 which was removed from FreeBSD 6.0" +.endif + pre-install: cd ${TOPDIR}/library/demos.jp && ${RM} -f *.orig diff --git a/japanese/xyagamo/Makefile b/japanese/xyagamo/Makefile index c33a4a41a54d..c70baaa2cb68 100644 --- a/japanese/xyagamo/Makefile +++ b/japanese/xyagamo/Makefile @@ -20,7 +20,13 @@ MAN6= xyagamo.6 MANLANG= ja MAN6COMPRESSED= no +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 600006 +BROKEN= "Depends on libxpg4 which was removed from FreeBSD 6.0" +.endif + pre-build: @cd ${BUILD_WRKSRC}/src; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} depend -.include <bsd.port.mk> +.include <bsd.port.post.mk> |