diff options
author | Chris Piazza <cpiazza@FreeBSD.org> | 1999-09-08 23:38:39 +0000 |
---|---|---|
committer | Chris Piazza <cpiazza@FreeBSD.org> | 1999-09-08 23:38:39 +0000 |
commit | 5378efbda4c49826e1ecdbc46f9bd4c2b0d55cdd (patch) | |
tree | ff58157041dd7c52a6a9ccb8e7f9c2edc6e17eb0 /editors/fine | |
parent | 2dc1cca57c2844bfce0c1c16be6816802d7536d6 (diff) | |
download | ports-5378efbda4c49826e1ecdbc46f9bd4c2b0d55cdd.tar.gz ports-5378efbda4c49826e1ecdbc46f9bd4c2b0d55cdd.zip |
Notes
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 0953e6be8099..13f5926cd525 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> |