aboutsummaryrefslogtreecommitdiff
path: root/audio/sfizz
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2022-08-02 18:18:10 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2022-08-02 18:20:23 +0000
commit76d979921eb16ba2668ed476959a019a37b6c57b (patch)
tree90a399851495f39c76ee185fe1a558b5b89af2eb /audio/sfizz
parent99897316ae00e8f7a69e3fee17dc8ad10733f49d (diff)
downloadports-76d979921eb16ba2668ed476959a019a37b6c57b.tar.gz
ports-76d979921eb16ba2668ed476959a019a37b6c57b.zip
audio/sfizz: Not generally broken
Broken only on 13.0 and earlier. Pointy hat to: amdmi3@
Diffstat (limited to 'audio/sfizz')
-rw-r--r--audio/sfizz/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/audio/sfizz/Makefile b/audio/sfizz/Makefile
index 6db5c89b65bb..31a3a62ad7f1 100644
--- a/audio/sfizz/Makefile
+++ b/audio/sfizz/Makefile
@@ -10,7 +10,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_riscv64= fails to compile: src/external/atomic_queue/defs.h:45:2: Unknown CPU architecture
BROKEN_i386= fails to compile: unknown type name 'Elf64_Auxinfo', see https://github.com/sfztools/sfizz/issues/1110
-BROKEN= fails to compile: unknown type name '_Bool'
LIB_DEPENDS= libsndfile.so:audio/libsndfile
RUN_DEPENDS= zenity:x11/zenity
@@ -63,6 +62,12 @@ VST_USE= ${LV2_USE}
VST_LIB_DEPENDS= ${LV2_LIB_DEPENDS}
VST_CMAKE_BOOL= SFIZZ_VST
+.include <bsd.port.pre.mk>
+
+.if (${OSVERSION} < 1301000)
+BROKEN= fails to compile: unknown type name '_Bool'
+.endif
+
post-install-LV2-on:
@${STRIP_CMD} \
${STAGEDIR}${PREFIX}/lib/lv2/sfizz.lv2/Contents/Binary/sfizz.so \
@@ -72,4 +77,4 @@ post-install-VST-on:
@${STRIP_CMD} \
${STAGEDIR}${PREFIX}/lib/vst3/sfizz.vst3/Contents/x86_64-linux/sfizz.so
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>