diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-09-08 23:38:39 +0000 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-09-08 23:38:39 +0000 |
commit | c4f0a99c512a85b07b8bc085f6324605dae2d987 (patch) | |
tree | 5891fe883f3fc1c2c1ab0297f591150bc16797a1 /editors/fine | |
parent | 862927f14c66738d52b058142c46f3d647a17db1 (diff) | |
download | FreeBSD-ports-c4f0a99c512a85b07b8bc085f6324605dae2d987.zip FreeBSD-ports-c4f0a99c512a85b07b8bc085f6324605dae2d987.tar.gz |
BROKEN if OSVERSION < 400004. This port requires NEWGCC but uses
QT which is built with the old gcc. That doesn't work.
Diffstat (limited to 'editors/fine')
-rw-r--r-- | editors/fine/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/editors/fine/Makefile b/editors/fine/Makefile index 0953e6b..13f5926 100644 --- a/editors/fine/Makefile +++ b/editors/fine/Makefile @@ -18,7 +18,11 @@ USE_GMAKE= yes USE_QT= yes WRKSRC= ${WRKDIR}/fine -MAKE_ENV= CXX="${CXX}" CC="${CC}" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 400004 +BROKEN= 'This program needs NEWGCC but links with QT, which is built with an old version.' +.endif do-install: @${MKDIR} ${PREFIX}/share/fine @@ -28,4 +32,4 @@ do-install: .endfor ${INSTALL_PROGRAM} ${WRKSRC}/fine ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> |