mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
0cb631680c
Mediastreamer 2.11.1, Linphone 3.8.1 - Switch to PolarSSL 1.3.x to enable instant messaging encryption - SRTP/ZRTP support has been moved from oRTP to Mediastreamer Notable enhancements in this release: - Fullscreen mode - Hang up button in the video window - Wizard for audio/video settings - Arabic translation - Support RTP/AVPF (RFC4585) with VP8 codec: this feature allows transmission error recovery for video, which greatly enhances the video quality over unreliable links
107 lines
3.0 KiB
Makefile
107 lines
3.0 KiB
Makefile
# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mediastreamer
|
|
PORTVERSION= 2.11.1
|
|
CATEGORIES= net
|
|
MASTER_SITES= SAVANNAH/linphone/mediastreamer
|
|
|
|
MAINTAINER= tijl@FreeBSD.org
|
|
COMMENT= Real-time audio and video streaming and processing
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libortp.so:${PORTSDIR}/net/ortp \
|
|
libsrtp.so:${PORTSDIR}/net/libsrtp \
|
|
libbzrtp.so:${PORTSDIR}/security/libbzrtp \
|
|
libpolarssl.so.8:${PORTSDIR}/security/polarssl13
|
|
|
|
CONFLICTS_INSTALL= linphone-base-[0-9]*
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-alsa --disable-matroska --disable-pulseaudio \
|
|
--disable-silent-rules --disable-strict \
|
|
--with-gsm=${LOCALBASE} --with-srtp=${LOCALBASE} \
|
|
--with-polarssl=${LOCALBASE} xxd_found=yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
USES= gettext-tools gmake libtool pathfix pkgconfig
|
|
USE_GNOME= intlhack
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= NLS UPNP VIDEO
|
|
OPTIONS_GROUP= AUDIOOPT VIDEOOPT
|
|
OPTIONS_GROUP_AUDIOOPT= GSM OPUS SPANDSP SPEEX
|
|
OPTIONS_GROUP_VIDEOOPT= FFMPEG GLX THEORA V4L VPX XVIDEO
|
|
OPTIONS_DEFAULT= UPNP VIDEO \
|
|
GSM OPUS SPANDSP SPEEX \
|
|
FFMPEG GLX THEORA V4L VPX XVIDEO
|
|
OPTIONS_SUB= yes
|
|
|
|
AUDIOOPT_DESC= Audio options
|
|
|
|
FFMPEG_CONFIGURE_ENABLE=ffmpeg
|
|
FFMPEG_LIB_DEPENDS= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg
|
|
|
|
GLX_CONFIGURE_ENABLE= glx
|
|
GLX_USE= GL=glew
|
|
|
|
GSM_CONFIGURE_ENABLE= gsm
|
|
GSM_LIB_DEPENDS= libgsm.so:${PORTSDIR}/audio/gsm
|
|
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
NLS_USES= gettext-runtime
|
|
|
|
OPUS_CONFIGURE_ENABLE= opus
|
|
OPUS_LIB_DEPENDS= libopus.so:${PORTSDIR}/audio/opus
|
|
|
|
SPANDSP_CONFIGURE_ENABLE= spandsp
|
|
SPANDSP_LIB_DEPENDS= libspandsp.so:${PORTSDIR}/comms/spandsp
|
|
|
|
SPEEX_CONFIGURE_ENABLE= speex
|
|
SPEEX_LIB_DEPENDS= libspeex.so:${PORTSDIR}/audio/speex
|
|
|
|
THEORA_CONFIGURE_ENABLE=theora
|
|
THEORA_LIB_DEPENDS= libtheora.so:${PORTSDIR}/multimedia/libtheora
|
|
|
|
UPNP_CONFIGURE_ENABLE= upnp
|
|
UPNP_LIB_DEPENDS= libupnp.so:${PORTSDIR}/devel/upnp
|
|
|
|
V4L_CONFIGURE_ENABLE= libv4l1 libv4l2
|
|
V4L_CONFIGURE_OFF= ac_cv_header_linux_videodev_h=no \
|
|
ac_cv_header_linux_videodev2_h=no
|
|
V4L_BUILD_DEPENDS= v4l_compat>=1.0.20120501:${PORTSDIR}/multimedia/v4l_compat
|
|
V4L_LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l
|
|
|
|
VIDEOOPT_DESC= Video options
|
|
|
|
VIDEO_CONFIGURE_ENABLE= video
|
|
|
|
VPX_CONFIGURE_ENABLE= vp8
|
|
VPX_LIB_DEPENDS= libvpx.so:${PORTSDIR}/multimedia/libvpx
|
|
|
|
XVIDEO_CONFIGURE_ENABLE=x11 xv
|
|
XVIDEO_USE= XORG=videoproto,x11,xv
|
|
|
|
.if defined(WITH_DEBUG) && !defined(WITHOUT_DEBUG)
|
|
CONFIGURE_ARGS+=--enable-debug
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's,gsm/gsm\.h,gsm.h,' \
|
|
${WRKSRC}/configure ${WRKSRC}/src/audiofilters/gsm.c
|
|
|
|
pre-build:
|
|
# Transform file to C array (similar to xxd -i from editors/vim)
|
|
.for i in yuv2rgb.fs yuv2rgb.vs
|
|
(cd ${WRKSRC}/src && { \
|
|
${ECHO_CMD} 'unsigned char ${i:S/./_/}[] = {' && \
|
|
/usr/bin/hexdump -v -e '" " 12/1 " 0x%02x," "\n" \
|
|
" 0x00 };\nunsigned int ${i:S/./_/}_len = %_Ad;"' ${i} | \
|
|
${SED} 's/ 0x ,//g' ; } > ${i}.h)
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|