diff options
-rw-r--r-- | audio/tclmidi/Makefile | 2 | ||||
-rw-r--r-- | chinese/tcl83/Makefile | 4 | ||||
-rw-r--r-- | devel/tclmore/Makefile | 8 | ||||
-rw-r--r-- | japanese/tcl80/Makefile | 2 | ||||
-rw-r--r-- | lang/rexx-imc/Makefile | 4 | ||||
-rw-r--r-- | net/vnc/Makefile | 4 |
6 files changed, 23 insertions, 1 deletions
diff --git a/audio/tclmidi/Makefile b/audio/tclmidi/Makefile index 3dfdb1d..637732d 100644 --- a/audio/tclmidi/Makefile +++ b/audio/tclmidi/Makefile @@ -35,6 +35,8 @@ MANN= midiconf.n midievnt.n midifree.n midiget.n midigrep.n \ .if ${ARCH} == "ia64" || ${ARCH} == "sparc64" IGNORE= ignored due to cast from pointer to integer of different size +.elif ${OSVERSION} >= 900000 +BROKEN= does not build .endif post-patch: diff --git a/chinese/tcl83/Makefile b/chinese/tcl83/Makefile index d7feffc..f40fe01 100644 --- a/chinese/tcl83/Makefile +++ b/chinese/tcl83/Makefile @@ -414,6 +414,10 @@ MLINKS= Access.3 Tcl_Access.3 \ .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 900000 +BROKEN= does not build +.endif + post-install: .if exists(${PKGINSTALL}) ${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} diff --git a/devel/tclmore/Makefile b/devel/tclmore/Makefile index 87f7177..6e8102c 100644 --- a/devel/tclmore/Makefile +++ b/devel/tclmore/Makefile @@ -27,4 +27,10 @@ INFO= ${PORTNAME} CONFIGURE_ARGS+= --with-tcl=${TCL_LIBDIR} \ --with-tclinclude=${TCL_INCLUDEDIR} -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 900000 +BROKEN= does not build +.endif + +.include <bsd.port.post.mk> diff --git a/japanese/tcl80/Makefile b/japanese/tcl80/Makefile index e120bc1..b28c182 100644 --- a/japanese/tcl80/Makefile +++ b/japanese/tcl80/Makefile @@ -38,6 +38,8 @@ USE_LDCONFIG= yes .if ${ARCH} == "sparc64" BROKEN= Does not compile on sparc64 (needs -fPIC) +.elif ${OSVERSION} >= 900000 +BROKEN= does not build .endif .if !defined(NOPORTDOCS) diff --git a/lang/rexx-imc/Makefile b/lang/rexx-imc/Makefile index eabdd32..007fc67 100644 --- a/lang/rexx-imc/Makefile +++ b/lang/rexx-imc/Makefile @@ -36,6 +36,10 @@ RMEFILES= README README.Y2K README.bugreport README.docs \ .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 900000 +BROKEN= does not build +.endif + post-patch: # CFLAGS safeness for ARCHs other than i386 @${REINPLACE_CMD} -e 's|-O2||' ${WRKSRC}/Make diff --git a/net/vnc/Makefile b/net/vnc/Makefile index db54d8d..afca7f7 100644 --- a/net/vnc/Makefile +++ b/net/vnc/Makefile @@ -39,6 +39,10 @@ MAN1= vncviewer.1 \ .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 900000 +BROKEN= does not build +.endif + .if !defined(WITHOUT_SERVER) # This is a placeholder MASTER_SITES entry -- see the pre-fetch target. MASTER_SITES+= ${MASTER_SITE_XFREE:S/$/:x/} |