diff options
author | kris <kris@FreeBSD.org> | 2004-03-05 20:22:31 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-05 20:22:31 +0800 |
commit | 0557af1a9428e53d476c698f6b32e822287b2a8d (patch) | |
tree | ebff08d0121575aca04394985aaa52501b81f310 /audio | |
parent | b6d3d3ff9726b3018cb914588e2dea85dc6037bd (diff) | |
download | freebsd-ports-gnome-0557af1a9428e53d476c698f6b32e822287b2a8d.tar.gz freebsd-ports-gnome-0557af1a9428e53d476c698f6b32e822287b2a8d.tar.zst freebsd-ports-gnome-0557af1a9428e53d476c698f6b32e822287b2a8d.zip |
BROKEN on amd64 and ia64: Does not compile
Diffstat (limited to 'audio')
-rw-r--r-- | audio/vsound/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/audio/vsound/Makefile b/audio/vsound/Makefile index 629de6aaec58..a21447965a55 100644 --- a/audio/vsound/Makefile +++ b/audio/vsound/Makefile @@ -17,10 +17,16 @@ RUN_DEPENDS= sox:${PORTSDIR}/audio/sox USE_LIBTOOL= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "amd64" +BROKEN= "Does not compile on ia64 or amd64" +.endif + .if !defined(NOPORTDOCS) post-install: @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |