summaryrefslogtreecommitdiff
path: root/editors/fine
diff options
context:
space:
mode:
authorChris Piazza <cpiazza@FreeBSD.org>1999-09-08 23:38:39 +0000
committerChris Piazza <cpiazza@FreeBSD.org>1999-09-08 23:38:39 +0000
commit5378efbda4c49826e1ecdbc46f9bd4c2b0d55cdd (patch)
treeff58157041dd7c52a6a9ccb8e7f9c2edc6e17eb0 /editors/fine
parentReduce fuzz and offsets in patches. (diff)
BROKEN if OSVERSION < 400004. This port requires NEWGCC but uses
QT which is built with the old gcc. That doesn't work.
Notes
Notes: svn path=/head/; revision=21441
Diffstat (limited to 'editors/fine')
-rw-r--r--editors/fine/Makefile8
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>