diff options
author | kris <kris@FreeBSD.org> | 2003-05-18 09:55:25 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-05-18 09:55:25 +0000 |
commit | 6f07558a470ffa1d87d80af0b4007d14060e7808 (patch) | |
tree | 0a6c4132fdb6c80f82e2405cebd8936484804de4 /misc | |
parent | a06e65bebb2b10d4b6f5dfcff23f08e8d38c918a (diff) | |
download | FreeBSD-ports-6f07558a470ffa1d87d80af0b4007d14060e7808.zip FreeBSD-ports-6f07558a470ffa1d87d80af0b4007d14060e7808.tar.gz |
BROKEN on 5.1: bad C++
Diffstat (limited to 'misc')
-rw-r--r-- | misc/estic/Makefile | 8 | ||||
-rw-r--r-- | misc/menushki/Makefile | 8 | ||||
-rw-r--r-- | misc/vbidecode/Makefile | 8 |
3 files changed, 21 insertions, 3 deletions
diff --git a/misc/estic/Makefile b/misc/estic/Makefile index 2c783ab..03f601d 100644 --- a/misc/estic/Makefile +++ b/misc/estic/Makefile @@ -14,6 +14,12 @@ DISTNAME= estic-${PORTVERSION}-sources MAINTAINER= jhs@FreeBSD.org COMMENT= Controller for ISDN TK-Anlage (PBX) made by Istec +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile (bad C++ code)" +.endif + USE_XLIB= yes USE_ZIP= yes NO_WRKSUBDIR= yes @@ -80,4 +86,4 @@ demo: # CDROMs, # (despite the original German phraseology) as I (<jhs@freebsd.org>) # have obtained a waiver. See ${FILESDIR}/README for explanation. -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/misc/menushki/Makefile b/misc/menushki/Makefile index c6c7b05..d251386 100644 --- a/misc/menushki/Makefile +++ b/misc/menushki/Makefile @@ -14,6 +14,12 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= pat@FreeBSD.org COMMENT= Menu converter between varieties of Window Managers +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile (bad C++ code)" +.endif + USE_X_PREFIX= yes GNU_CONFIGURE= yes USE_GMAKE= yes @@ -28,4 +34,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/misc/vbidecode/Makefile b/misc/vbidecode/Makefile index 52083ec..fc3b741 100644 --- a/misc/vbidecode/Makefile +++ b/misc/vbidecode/Makefile @@ -17,10 +17,16 @@ DISTNAME= bttv-0.6.4 MAINTAINER= roger@freebsd.org COMMENT= Get Videotext/Teletext (.vtx) and other VBI data from TV channels +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile (bad C++ code)" +.endif + WRKSRC= ${WRKDIR}/bttv/apps/vbidecode do-install: ${INSTALL_PROGRAM} ${WRKSRC}/vbidecode ${PREFIX}/bin @strip ${PREFIX}/bin/vbidecode -.include <bsd.port.mk> +.include <bsd.port.post.mk> |