276b32c59a
ABI is compatible but rebuild consumers anyway in case some can take advantage of new APIs e.g., https://github.com/mpv-player/mpv/commit/e08f235578aa - DVDREAD is no longer supported after https://github.com/mpv-player/mpv/commit/622940498525 - DVDNAV needs libdvdred after https://github.com/mpv-player/mpv/commit/34e6a26f4d5a - TEST needs newer dependency after https://github.com/mpv-player/mpv/commit/293dfc782552 - V4L can no longer use tv:// after https://github.com/mpv-player/mpv/commit/b30e85508a30 - VULKAN option uses libplacebo after https://github.com/mpv-player/mpv/commit/7006d6752d7d - ZIMG to support --vf=fingerprint after https://github.com/mpv-player/mpv/commit/9cfeafa89e2e - ZSH option is no longer needed after https://github.com/mpv-player/mpv/commit/2712db823884 - Drop --disable-vapoursynth-lazy after https://github.com/mpv-player/mpv/commit/fb8d240c4d04 - Add --disable-shaderc to avoid no longer used dependency brought via libplacebo Changes: https://github.com/mpv-player/mpv/releases/tag/v0.30.0
35 lines
853 B
Makefile
35 lines
853 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= radiance
|
|
DISTVERSION= 0.6.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
PKGNAMESUFFIX= -video
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Video art software for VJs
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libfftw3.so:math/fftw3 \
|
|
libfftw3f.so:math/fftw3-float \
|
|
libmpv.so:multimedia/mpv \
|
|
libportaudio.so:audio/portaudio \
|
|
librtmidi.so:audio/rtmidi \
|
|
libsamplerate.so:audio/libsamplerate
|
|
|
|
USES= cmake compiler:c++14-lang gl localbase:ldflags qt:5
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= zbanks
|
|
GH_TUPLE= zbanks:BTrack:1c5b72e:bt/BTrack
|
|
USE_QT= core declarative graphicaleffects gui network quickcontrols widgets \
|
|
buildtools_build qmake_build
|
|
USE_GL= gl glu
|
|
|
|
CMAKE_ARGS= -DRADIANCE_SYSTEM_RESOURCES:STRING=${DATADIR}/
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} '/-march=native/d' ${WRKSRC}/CMakeLists.txt
|
|
|
|
.include <bsd.port.mk>
|