Update audio/qjackctl to version 0.6.2
[dports.git] / audio / faust-lv2 / Makefile
1 # $FreeBSD$
2
3 PORTNAME=       faust
4 DISTVERSION=    1.4.20180118
5 PORTREVISION=   6
6 CATEGORIES=     audio
7 MASTER_SITES=   https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/${BB_COMMIT}.tar.gz?dummy=/
8 PKGNAMESUFFIX=  -lv2
9
10 MAINTAINER=     yuri@FreeBSD.org
11 COMMENT=        LV2 plugin architecture for the Faust programming language
12
13 LICENSE=        GPLv3
14 LICENSE_FILE=   ${WRKSRC}/COPYING
15
16 BROKEN_aarch64=         fails to link: can't create dynamic relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol: vtable for LV2UI in readonly segment
17 .if ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld
18 BROKEN_i386=            ld: error: can't create dynamic relocation R_386_32 against symbol: vtable for LV2UI in readonly segment
19 .endif
20
21 BUILD_DEPENDS=  lv2>0:audio/lv2 \
22                 faust>0:audio/faust \
23                 ${LOCALBASE}/include/boost/circular_buffer.hpp:devel/boost-libs
24
25 USES=           gmake localbase tar:bz2
26
27 BB_ACCOUNT=     agraef
28 BB_PROJECT=     faust-lv2
29 BB_COMMIT=      4dc83e28e998
30
31 WRKSRC=         ${WRKDIR}/${BB_ACCOUNT}-${BB_PROJECT}-${BB_COMMIT}
32
33 LDFLAGS+=       -fPIC # recommended by 13i386 failure messages, it was only failing 
34
35 OPTIONS_DEFINE_x86_64=  SIMD
36 OPTIONS_DEFINE_i386=    SIMD
37 OPTIONS_DEFAULT_x86_64= SIMD
38 OPTIONS_DEFAULT_i386=   SIMD
39
40 SIMD_CFLAGS=    -msse -msse2 -mfpmath=sse
41
42 .include <bsd.port.mk>