diff options
-rw-r--r-- | audio/csound/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/audio/csound/Makefile b/audio/csound/Makefile index 3d5ccde5969c..2abf5336585d 100644 --- a/audio/csound/Makefile +++ b/audio/csound/Makefile @@ -31,6 +31,12 @@ PLIST= ${WRKDIR}/pkg-plist USE_X_PREFIX= yes USE_REINPLACE= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" && ${OSVERSION} >= 502102 +BROKEN= "Does not compile on alpha 5.x" +.endif + pre-build: @${FIND} ${WRKDIR} -type f -exec ${CHMOD} 644 \{\} \; @@ -56,4 +62,4 @@ do-install: ${FIND} ${WRKDIR} -type f -perm 755 \ -exec ${INSTALL_PROGRAM} {} ${PREFIX}/bin \; -.include <bsd.port.mk> +.include <bsd.port.post.mk> |