eceb8266d6
It aims to implement a simple high layer API to control the SIP for sessions establishements and common extensions. Once completed, this eXtended library should provide an API for call management, messaging and presence features. eXosip2 has support for: * registrations. (REGISTER) * call initiation and modification. (INVITE, re-INVITE) * other methods within calls (INFO, OPTIONS, UPDATE) * call transfer. (REFER) * reliability for provisionnal response. (PRACK) * sip event package. (SUBSCRIBE/NOTIFY) * event state publication. (PUBLISH) * instant messaging. (MESSAGE) eXosip2 does not contain: * RTP. * audio interface * sdp negotiation. This allow you to write any kind of SIP endpoint/gateway. WWW: http://savannah.gnu.org/projects/exosip PR: ports/95799 Submitted by: Muhammad Moinur Rahman <bd_subzero@yahoo.com>
33 lines
774 B
Makefile
33 lines
774 B
Makefile
# New ports collection makefile for: libeXosip2
|
|
# Date created: 12 April 2006
|
|
# Whom: Muhammad Moinur Rahman <bd_subzero@yahoo.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libeXosip2
|
|
PORTVERSION= 2.2.2
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
|
|
MASTER_SITE_SUBDIR= exosip
|
|
|
|
MAINTAINER= bd_subzero@yahoo.com
|
|
COMMENT= GPL library that extends the capability of the oSIP library
|
|
|
|
LIB_DEPENDS= osip2:${PORTSDIR}/net/libosip2
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-tools
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.if defined(WITH_UCL)
|
|
LIB_DEPENDS+= uclmmbase:${PORTSDIR}/devel/uclmmbase
|
|
CONFIGURE_ARGS+= --enable-ucl
|
|
CONFIGURE_ENV+= CFLAGS=-I${LOCALBASE}/include
|
|
PLIST_SUB+= JOSUA=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-josua
|
|
PLIST_SUB+= JOSUA="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|