mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +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
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= belle-sip
|
|
PORTVERSION= 1.4.0
|
|
CATEGORIES= net java
|
|
MASTER_SITES= SAVANNAH/linphone/${PORTNAME}/:source1 \
|
|
http://www.antlr3.org/download/:source2
|
|
DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:source1 \
|
|
antlr-3.4-complete.jar:source2
|
|
EXTRACT_ONLY= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Belle-sip is a SIP (RFC3261) implementation written in C
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libantlr3c.so:${PORTSDIR}/devel/libantlr3c
|
|
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS= --disable-silent-rules --disable-strict --disable-tests \
|
|
--with-antlr=${LOCALBASE}
|
|
INSTALL_TARGET= install-strip
|
|
USES= compiler:c11 gmake libtool pathfix
|
|
USE_JAVA= yes
|
|
JAVA_BUILD= jre
|
|
JAVA_VERSION= 1.6+
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= POLARSSL
|
|
OPTIONS_DEFAULT=POLARSSL
|
|
|
|
POLARSSL_CONFIGURE_ENABLE= tls
|
|
POLARSSL_LIB_DEPENDS= libpolarssl.so.8:${PORTSDIR}/security/polarssl13
|
|
|
|
post-extract:
|
|
@${CP} ${DISTDIR}/antlr-3.4-complete.jar ${WRKDIR}/antlr-complete.jar
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%WRKDIR%%|${WRKDIR}|' -e 's|-lrt||' \
|
|
${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|