diff options
author | kris <kris@FreeBSD.org> | 2005-01-02 08:43:03 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-01-02 08:43:03 +0800 |
commit | db8e351e250d94b5c6af58f0b51781da27657a43 (patch) | |
tree | 559b94111d2eef8b00c790855e4992a2899b055a /audio/beast | |
parent | ce65ec20b344ab865c3687e5cc6f756832d92339 (diff) | |
download | freebsd-ports-graphics-db8e351e250d94b5c6af58f0b51781da27657a43.tar.gz freebsd-ports-graphics-db8e351e250d94b5c6af58f0b51781da27657a43.tar.zst freebsd-ports-graphics-db8e351e250d94b5c6af58f0b51781da27657a43.zip |
BROKEN on alpha (does not build) and ia64 (does not compile)
Approved by: portmgr (self)
Diffstat (limited to 'audio/beast')
-rw-r--r-- | audio/beast/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/audio/beast/Makefile b/audio/beast/Makefile index 66e15e08031..2b7d281a24d 100644 --- a/audio/beast/Makefile +++ b/audio/beast/Makefile @@ -35,6 +35,16 @@ CONFIGURE_ARGS= --disable-debug \ MAN1= beast.1 bsesh.1 sfidl.1 MAN3= beast-gxk.3 bse-procs.3 bse-structs.3 bse.3 sfi.3 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" +BROKEN= "Configure fails on ia64" +.endif + +.if ${ARCH} == "alpha" +BROKEN= "Does not build on alpha" +.endif + post-patch: @${REINPLACE_CMD} -E \ -e 's|(bseladspapath=)\$${libdir}/ladspa|\1"${LOCALBASE}/lib/ladspa"|' \ @@ -44,4 +54,4 @@ post-patch: ${WRKSRC}/bse/Makefile.in \ ${WRKSRC}/bse/zintern/Makefile.in -.include <bsd.port.mk> +.include <bsd.port.post.mk> |