diff options
author | kris <kris@FreeBSD.org> | 2004-11-18 22:48:19 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-11-18 22:48:19 +0000 |
commit | 860582f354e26df48964fb8a46565e7905bfcf45 (patch) | |
tree | 0ea6942dd0835283b944fed3c0b08b64c51ce1c2 /net-mgmt | |
parent | 697106b9717d530d5b3e6e3886b79ff1a2bf5275 (diff) | |
download | FreeBSD-ports-860582f354e26df48964fb8a46565e7905bfcf45.zip FreeBSD-ports-860582f354e26df48964fb8a46565e7905bfcf45.tar.gz |
BROKEN on 5.x: Does not compile
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/nagios-plugins/Makefile | 4 | ||||
-rw-r--r-- | net-mgmt/netsaint-plugins/Makefile | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/net-mgmt/nagios-plugins/Makefile b/net-mgmt/nagios-plugins/Makefile index f237f64..32068be 100644 --- a/net-mgmt/nagios-plugins/Makefile +++ b/net-mgmt/nagios-plugins/Makefile @@ -25,6 +25,10 @@ OPTIONS= QSTAT "Game server query support" off \ .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 503000 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + USE_SUBMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --sbindir=${PREFIX}/share/nagios/cgi-bin \ diff --git a/net-mgmt/netsaint-plugins/Makefile b/net-mgmt/netsaint-plugins/Makefile index 18052df..c95acea 100644 --- a/net-mgmt/netsaint-plugins/Makefile +++ b/net-mgmt/netsaint-plugins/Makefile @@ -31,6 +31,12 @@ USE_AUTOMAKE_VER= 14 USE_AUTOCONF_VER= 213 USE_GMAKE= yes +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 503000 +BROKEN= 'Does not compile on FreeBSD >= 5.x' +.endif + pre-fetch: @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure @@ -48,4 +54,4 @@ post-patch: post-clean: @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc -.include <bsd.port.mk> +.include <bsd.port.post.mk> |