d6bccda8d9
- HI10P is always built after https://git.videolan.org/?p=x264.git;a=commitdiff;h=71ed44c73124 Changes: https://git.videolan.org/?p=x264.git;a=shortlog;h=0a84d986e7020f8344f00752e3600b9769cc1e85 ABI: https://abi-laboratory.pro/tracker/timeline/x264/
56 lines
1.5 KiB
Makefile
56 lines
1.5 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= obs-studio
|
|
DISTVERSION= 21.1.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= multimedia
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Open source streaming/recording software
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= v4l_compat>=0:multimedia/v4l_compat \
|
|
swig3.0:devel/swig30
|
|
LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \
|
|
libcurl.so:ftp/curl \
|
|
libdbus-1.so:devel/dbus \
|
|
libfdk-aac.so:audio/fdk-aac \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2 \
|
|
libjack.so:audio/jack \
|
|
libjansson.so:devel/jansson \
|
|
libluajit-5.1.so:lang/luajit \
|
|
libpulse.so:audio/pulseaudio \
|
|
libspeexdsp.so:audio/speexdsp \
|
|
libsysinfo.so:devel/libsysinfo \
|
|
libudev.so:devel/libudev-devd \
|
|
libv4l2.so:multimedia/libv4l \
|
|
libx264.so:multimedia/libx264
|
|
|
|
USES= cmake:outsource compiler:c++11-lib lua pkgconfig python:3.4+ qt:5
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= obsproject
|
|
USE_QT= core gui widgets x11extras buildtools_build imageformats_run qmake_build
|
|
USE_GL= gl
|
|
USE_XORG= ice sm x11 xcb xcomposite xext xfixes xinerama xrandr
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_ARGS= -DUNIX_STRUCTURE:BOOL=ON \
|
|
-DOBS_VERSION_OVERRIDE:STRING="${PORTVERSION}"
|
|
|
|
BROKEN_aarch64= Fails to compile: invalid conversion between vector type and integer type
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${CHOSEN_COMPILER_TYPE} == gcc
|
|
CXXFLAGS+= -D_GLIBCXX_USE_C99
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's| 3.4)| ${PYTHON_VER})|' \
|
|
${WRKSRC}/cmake/Modules/FindPythonDeps.cmake
|
|
|
|
.include <bsd.port.post.mk>
|