libpjsip: new package

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Cc: Patrick Keroulas <patrick.keroulas@savoirfairelinux.com>
Cc: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Bernd Kuhls 2016-03-05 00:32:43 +01:00 committed by Thomas Petazzoni
parent 6fbd0905af
commit 0f157eeb5e
4 changed files with 56 additions and 0 deletions

View File

@ -1132,6 +1132,7 @@ menu "Networking"
source "package/liboping/Config.in"
source "package/libosip2/Config.in"
source "package/libpcap/Config.in"
source "package/libpjsip/Config.in"
source "package/librsync/Config.in"
source "package/libshairplay/Config.in"
source "package/libshout/Config.in"

View File

@ -0,0 +1,12 @@
config BR2_PACKAGE_LIBPJSIP
bool "libpjsip"
depends on BR2_INSTALL_LIBSTDCPP
help
PJSIP is a free and open source multimedia communication
library written in C language implementing standard based
protocols such as: SIP, SDP, RTP, STUN, TURN, and ICE.
http://www.pjsip.org
comment "libpjsip needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP

View File

@ -0,0 +1,5 @@
# From http://www.pjsip.org/release/2.4.5/MD5SUM.TXT
md5 f58b3485977b3a700256203a554b3869 pjproject-2.4.5.tar.bz2
# Locally computed
sha256 086f5e70dcaee312b66ddc24dac6ef85e6f1fec4eed00ff2915cebe0ee3cdd8d pjproject-2.4.5.tar.bz2

View File

@ -0,0 +1,38 @@
################################################################################
#
# libpjsip
#
################################################################################
LIBPJSIP_VERSION = 2.4.5
LIBPJSIP_SOURCE = pjproject-$(LIBPJSIP_VERSION).tar.bz2
LIBPJSIP_SITE = http://www.pjsip.org/release/$(LIBPJSIP_VERSION)
LIBPJSIP_LICENSE = GPLv2+
LIBPJSIP_LICENSE_FILES = COPYING
LIBPJSIP_INSTALL_STAGING = YES
LIBPJSIP_CONF_ENV = \
LD="$(TARGET_CC)" \
CFLAGS="$(TARGET_CFLAGS) -DPJ_HAS_IPV6=1"
LIBPJSIP_CONF_OPTS = \
--disable-sound \
--disable-gsm \
--disable-speex-codec \
--disable-speex-aec \
--disable-resample \
--disable-video \
--disable-opencore-amr
ifeq ($(BR2_PACKAGE_OPENSSL),y)
LIBPJSIP_DEPENDENCIES += openssl
LIBPJSIP_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr
else
LIBPJSIP_CONF_OPTS += --disable-ssl
endif
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
LIBPJSIP_DEPENDENCIES += util-linux
endif
$(eval $(autotools-package))