diff options
author | kris <kris@FreeBSD.org> | 2003-08-10 14:44:43 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-08-10 14:44:43 +0800 |
commit | 411356d9feeda5e4e9bdd5631d27df581713404c (patch) | |
tree | 2e56fc490a14fb372c9105744846ec833edfe122 /audio | |
parent | 8f7682d9efeb16ac1874765696a118412f050030 (diff) | |
download | freebsd-ports-gnome-411356d9feeda5e4e9bdd5631d27df581713404c.tar.gz freebsd-ports-gnome-411356d9feeda5e4e9bdd5631d27df581713404c.tar.zst freebsd-ports-gnome-411356d9feeda5e4e9bdd5631d27df581713404c.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
Diffstat (limited to 'audio')
-rw-r--r-- | audio/musicbox/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/audio/musicbox/Makefile b/audio/musicbox/Makefile index d3523eb8d527..8afbd3107743 100644 --- a/audio/musicbox/Makefile +++ b/audio/musicbox/Makefile @@ -18,6 +18,7 @@ COMMENT= X11 front-end for mpg123 RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 +USE_GCC= 2.95 USE_QT_VER= 1 DOCS= ChangeLog README EVAL_PREFIX+= QT1DIR=qt1 @@ -26,6 +27,12 @@ PLIST= ${WRKDIR}/pkg-plist USE_X_PREFIX= yes WRKSRC= ${WRKDIR}/musicbox-1.01 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 501013 +BROKEN= "compilation error" +.endif + pre-install: ${ECHO_CMD} bin/musicbox > ${PLIST} .if !defined(NOPORTDOCS) @@ -44,4 +51,4 @@ do-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |