mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
ba6612603a
- fix handling of webengine dependency and SSE use - fix recent build failures due to boost update Changelog: https://github.com/supercollider/supercollider/releases/tag/Version-3.13.0 PR: 277722
62 lines
1.9 KiB
Makefile
62 lines
1.9 KiB
Makefile
PORTNAME= supercollider
|
|
DISTVERSION= 3.13.0
|
|
CATEGORIES= audio
|
|
MASTER_SITES= https://github.com/supercollider/supercollider/releases/download/Version-${PORTVERSION}/
|
|
DISTNAME= SuperCollider-${PORTVERSION}-Source
|
|
|
|
MAINTAINER= ports@nicandneal.net
|
|
COMMENT= Programming language for real time audio synthesis
|
|
WWW= https://supercollider.github.io
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libboost_system.so:devel/boost-libs \
|
|
libjack.so:audio/jack \
|
|
libsndfile.so:audio/libsndfile \
|
|
libfftw3f.so:math/fftw3-float \
|
|
libyaml-cpp.so:devel/yaml-cpp
|
|
|
|
USES= cmake compiler:c++11-lang iconv localbase pkgconfig \
|
|
qt:5 readline shared-mime-info tar:bzip2 xorg
|
|
USE_QT_amd64= webengine
|
|
USE_QT_i386= webengine
|
|
USE_QT= buildtools:build concurrent core declarative gui linguisttools location \
|
|
network opengl printsupport qmake:build sensors \
|
|
sql widgets websockets webchannel svg ${USE_QT_${ARCH}}
|
|
USE_XORG= x11
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_ARGS_nox86= -DSSE:BOOL=FALSE \
|
|
-DSSE2:BOOL=FALSE \
|
|
-DSC_USE_QTWEBENGINE:BOOL=FALSE
|
|
CMAKE_ARGS= -DCMAKE_PREFIX_PATH=${LOCALBASE}/lib/qt5 \
|
|
-DLIBUSB_1_INCLUDE_DIR=/usr/include \
|
|
-DLIBUSB_1_LIBRARY=/usr/lib/libusb.so \
|
|
-DLIBSCSYNTH=ON \
|
|
-DSYSTEM_BOOST=ON \
|
|
-DSYSTEM_YAMLCPP=ON \
|
|
-DSC_ABLETON_LINK=OFF \
|
|
${ARCH:Namd64:Ni386:C/.*/${CMAKE_ARGS_nox86}/}
|
|
|
|
DESKTOP_ENTRIES="SuperCollider IDE" "" "${LOCALBASE}/share/pixmaps/sc_ide.svg" \
|
|
"scide" "" false
|
|
|
|
OPTIONS_DEFINE= AVAHI HELP SUPERNOVA
|
|
OPTIONS_DEFAULT= AVAHI HELP SUPERNOVA
|
|
OPTIONS_SUB= yes
|
|
|
|
HELP_DESC= Install on-line help text
|
|
SUPERNOVA_DESC= Build with supernova as optional audio synthesis server
|
|
|
|
AVAHI_LIB_DEPENDS= libavahi-client.so:net/avahi-app \
|
|
libavahi-common.so:net/avahi-app
|
|
AVAHI_CMAKE_BOOL_OFF= NO_AVAHI
|
|
HELP_CMAKE_BOOL= INSTALL_HELP
|
|
SUPERNOVA_CMAKE_BOOL= SUPERNOVA
|
|
|
|
post-patch:
|
|
${CP} ${WRKSRC}/external_libraries/boost/boost/filesystem/string_file.hpp ${WRKSRC}/include/common
|
|
|
|
.include <bsd.port.mk>
|