diff options
author | kris <kris@FreeBSD.org> | 2003-05-18 10:15:24 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-05-18 10:15:24 +0000 |
commit | e6337684a674e6c3f5a382f4ca7ec4fcfbd10a3f (patch) | |
tree | eab81ed3d67a5d5c871b5e2603df022c4faf899c /sysutils | |
parent | 6f07558a470ffa1d87d80af0b4007d14060e7808 (diff) | |
download | FreeBSD-ports-e6337684a674e6c3f5a382f4ca7ec4fcfbd10a3f.zip FreeBSD-ports-e6337684a674e6c3f5a382f4ca7ec4fcfbd10a3f.tar.gz |
BROKEN on 5.1: bad C++
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/bbapm/Makefile | 8 | ||||
-rw-r--r-- | sysutils/fastresolve/Makefile | 4 | ||||
-rw-r--r-- | sysutils/xlogmaster/Makefile | 8 | ||||
-rw-r--r-- | sysutils/xosview/Makefile | 8 |
4 files changed, 25 insertions, 3 deletions
diff --git a/sysutils/bbapm/Makefile b/sysutils/bbapm/Makefile index 668d8b6..96dcc3a 100644 --- a/sysutils/bbapm/Makefile +++ b/sysutils/bbapm/Makefile @@ -17,6 +17,12 @@ PATCH_DIST_STRIP= -p1 MAINTAINER= adamw@FreeBSD.org COMMENT= APM monitor for the Blackbox slit +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile (bad C++ code)" +.endif + USE_X_PREFIX= yes USE_GNOME= gtk12 GNU_CONFIGURE= yes @@ -29,4 +35,4 @@ do-install: @${INSTALL_DATA} ${WRKSRC}/data/${a} ${PREFIX}/share/bbtools .endfor -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/sysutils/fastresolve/Makefile b/sysutils/fastresolve/Makefile index 0015dbe..1fded2f 100644 --- a/sysutils/fastresolve/Makefile +++ b/sysutils/fastresolve/Makefile @@ -30,6 +30,10 @@ MAN1= dns-terror.1 btree-dump.1 convert-dom-db.1 convert-ip-db.1 \ .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile (bad C++ code)" +.endif + pre-configure: @(cd ${WRKSRC} && aclocal14) diff --git a/sysutils/xlogmaster/Makefile b/sysutils/xlogmaster/Makefile index 557ebb6..39a7edc 100644 --- a/sysutils/xlogmaster/Makefile +++ b/sysutils/xlogmaster/Makefile @@ -14,6 +14,12 @@ MASTER_SITE_SUBDIR= xlogmaster MAINTAINER= aw1@stade.co.uk COMMENT= Quick & easy monitoring of logfiles and devices +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile (bad C++ code)" +.endif + USE_XLIB= yes USE_GMAKE= yes USE_GNOME= gtk12 @@ -25,4 +31,4 @@ post-install: @install-info ${PREFIX}/info/xlogmaster.info ${PREFIX}/info/dir ${INSTALL_DATA} ${FILESDIR}/xlogmasterrc ${PREFIX}/etc/xlogmaster -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/sysutils/xosview/Makefile b/sysutils/xosview/Makefile index 62d4ab0..96eee87 100644 --- a/sysutils/xosview/Makefile +++ b/sysutils/xosview/Makefile @@ -15,8 +15,14 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= A graphical performance meter +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile (bad C++ code)" +.endif + USE_X_PREFIX= yes GNU_CONFIGURE= yes MAN1= xosview.1 -.include <bsd.port.mk> +.include <bsd.port.post.mk> |