diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-02-25 09:49:25 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-02-25 09:49:25 +0000 |
commit | 244dd0f8a440322f1ad01774d9c87cd10cc8f32f (patch) | |
tree | 837bcb04b6972ad3b655d68732fd9e921df2f68e | |
parent | - bugfix: awk in -CURRENT accepts no regexes in RS, causing the database (diff) |
BROKEN on alpha 5.x: Does not compile
Notes
Notes:
svn path=/head/; revision=102047
-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> |