diff options
-rw-r--r-- | math/pspp/Makefile | 8 | ||||
-rw-r--r-- | net-mgmt/bgpq/Makefile | 8 | ||||
-rw-r--r-- | net/bgpq/Makefile | 8 | ||||
-rw-r--r-- | print/dviselect/Makefile | 7 | ||||
-rw-r--r-- | security/ccrypt/Makefile | 8 | ||||
-rw-r--r-- | security/op/Makefile | 8 | ||||
-rw-r--r-- | security/pad/Makefile | 8 | ||||
-rw-r--r-- | sysutils/libretto-config/Makefile | 8 |
8 files changed, 55 insertions, 8 deletions
diff --git a/math/pspp/Makefile b/math/pspp/Makefile index f66409db76b5..8b87554ad2bd 100644 --- a/math/pspp/Makefile +++ b/math/pspp/Makefile @@ -16,4 +16,10 @@ COMMENT= Program for statistical analysis of sampled data GNU_CONFIGURE= yes -.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/net-mgmt/bgpq/Makefile b/net-mgmt/bgpq/Makefile index 882450f2a63d..6ec3a1f5dd92 100644 --- a/net-mgmt/bgpq/Makefile +++ b/net-mgmt/bgpq/Makefile @@ -19,4 +19,10 @@ HAS_CONFIGURE= yes post-install: ${STRIP_CMD} ${PREFIX}/bin/bgpq -.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/net/bgpq/Makefile b/net/bgpq/Makefile index 882450f2a63d..6ec3a1f5dd92 100644 --- a/net/bgpq/Makefile +++ b/net/bgpq/Makefile @@ -19,4 +19,10 @@ HAS_CONFIGURE= yes post-install: ${STRIP_CMD} ${PREFIX}/bin/bgpq -.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/print/dviselect/Makefile b/print/dviselect/Makefile index 2a0ec75851ec..13c991d03e16 100644 --- a/print/dviselect/Makefile +++ b/print/dviselect/Makefile @@ -20,5 +20,10 @@ SCRIPTS_ENV= CFLAGS="${CFLAGS}" MAN1= dviselect.1 +.include <bsd.port.pre.mk> -.include <bsd.port.mk> +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + +.include <bsd.port.post.mk> diff --git a/security/ccrypt/Makefile b/security/ccrypt/Makefile index e227420f0366..4923c5cf7149 100644 --- a/security/ccrypt/Makefile +++ b/security/ccrypt/Makefile @@ -26,6 +26,12 @@ MLINKS= ccrypt.1 ccencrypt.1 \ ccrypt.1 ccdecrypt.1 \ ccrypt.1 ccat.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + post-patch: @${REINPLACE_CMD} -e 's|gtar|tar|g' ${WRKSRC}/configure @@ -37,4 +43,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/security/op/Makefile b/security/op/Makefile index 829ea1013598..a8d2909924a0 100644 --- a/security/op/Makefile +++ b/security/op/Makefile @@ -48,6 +48,12 @@ CONF_FILE= op.access SAMP_SUFX= .sample DOC_FILES= README op.paper +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + # Post-extract # @@ -92,4 +98,4 @@ install-doc-files: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/security/pad/Makefile b/security/pad/Makefile index cf6f7bc984ff..8330a71933b5 100644 --- a/security/pad/Makefile +++ b/security/pad/Makefile @@ -22,6 +22,12 @@ MAN1= pad.1 PLIST= ${WRKDIR}/pkg-plist USE_OPENSSL= yes +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + pre-install: ${ECHO_CMD} bin/pad > ${PLIST} .if !defined(NOPORTDOCS) @@ -41,4 +47,4 @@ do-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/sysutils/libretto-config/Makefile b/sysutils/libretto-config/Makefile index 332a0e190001..227a8e8d6407 100644 --- a/sysutils/libretto-config/Makefile +++ b/sysutils/libretto-config/Makefile @@ -22,6 +22,12 @@ DOCDIR= ${PREFIX}/share/doc/${PORTNAME} MAN8= ${PORTNAME}.8 MANLANG= . ja +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501000 +BROKEN= "Does not compile" +.endif + post-install: # install japanese manpage also :-) @${INSTALL_MAN} ${WRKSRC}/libapm-j.man ${PREFIX}/man/ja/man8/${PORTNAME}.8 @@ -34,4 +40,4 @@ post-install: @${INSTALL_DATA} ${WRKSRC}/APM-EXBIOS-j.txt ${DOCDIR}/ja/APM-EXBIOS.txt .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |