diff options
author | kris <kris@FreeBSD.org> | 2003-10-16 01:31:58 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-10-16 01:31:58 +0000 |
commit | da8461ff2ec762292299f15fc11acb1c8964991e (patch) | |
tree | f89e331d5f2e08ecfea6d61ae8acc9965049b439 /japanese | |
parent | aacf2ddd5568a006dd10f1707dbfc411828817ce (diff) | |
download | FreeBSD-ports-da8461ff2ec762292299f15fc11acb1c8964991e.zip FreeBSD-ports-da8461ff2ec762292299f15fc11acb1c8964991e.tar.gz |
BROKEN on 5.x: does not compile
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/kcc/Makefile | 8 | ||||
-rw-r--r-- | japanese/plain2/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/japanese/kcc/Makefile b/japanese/kcc/Makefile index 28a51a8..cd580f6 100644 --- a/japanese/kcc/Makefile +++ b/japanese/kcc/Makefile @@ -18,4 +18,10 @@ INSTALL_TARGET= install install.man MANLANG= ja MAN1= kcc.1 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + +.include <bsd.port.post.mk> diff --git a/japanese/plain2/Makefile b/japanese/plain2/Makefile index 841037f..711e492 100644 --- a/japanese/plain2/Makefile +++ b/japanese/plain2/Makefile @@ -26,6 +26,12 @@ USE_REINPLACE= yes MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -DBSD -DKANJI -DPICTURE -DHTML -fwritable-strings" ALL_TARGET= ${PORTNAME} +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + post-patch: @${REINPLACE_CMD} -e \ 's|/usr/lib/plain2|${DATADIR}|g' ${BUILD_WRKSRC}/plain2.h @@ -35,4 +41,4 @@ do-install: @${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/lib/*.p2 ${DATADIR} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |