diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-08-10 06:44:43 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-08-10 06:44:43 +0000 |
commit | b98592c11533d4b1faaa588501cc3dcb95b31408 (patch) | |
tree | 957d33b6420157ae2942113e0d9f9af7c988e6b9 /net/icqnix | |
parent | ce1f6608f852128aa0344f5c20f7b4e4585e3dbe (diff) | |
download | ports-b98592c11533d4b1faaa588501cc3dcb95b31408.tar.gz ports-b98592c11533d4b1faaa588501cc3dcb95b31408.zip |
Set USE_GCC=2.95 to fix build on 5.x. Mark musicbox and icqnix as BROKEN
on 5.x machines (compile and configure failure, respectively).
PR: 52731
Submitted by: trevor
Notes
Notes:
svn path=/head/; revision=86702
Diffstat (limited to 'net/icqnix')
-rw-r--r-- | net/icqnix/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/icqnix/Makefile b/net/icqnix/Makefile index 1b76790dd59f..b7bd690988ef 100644 --- a/net/icqnix/Makefile +++ b/net/icqnix/Makefile @@ -22,8 +22,14 @@ USE_QT_VER= 1 CONFIGURE_ARGS= --with-qt-libraries=${X11BASE}/lib --with-qt-includes=${X11BASE}/include/X11/qt1 CONFIGURE_ENV= QT_MOC="${MOC}" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501013 +BROKEN= "Configure fails" +.endif + post-install: @strip ${PREFIX}/bin/icqnix @strip ${PREFIX}/bin/icqnix.install -.include <bsd.port.mk> +.include <bsd.port.post.mk> |