diff options
author | Guido Falsi <madpilot@FreeBSD.org> | 2020-05-09 15:45:42 +0000 |
---|---|---|
committer | Guido Falsi <madpilot@FreeBSD.org> | 2020-05-09 15:45:42 +0000 |
commit | 223edac48dbde29e8bca04b7c2fc26e05bf1e9e6 (patch) | |
tree | b172f5d8897f36510c07ea4751107d8777ce382c | |
parent | py-asciimatics runs fine with python 3.7 (diff) |
- Add new URIPARSER option, enabled by default
- Change to CONFIGURE_WITH options helper where applicable
PR: 246300
Submitted by: Dmitry Wagin <dmitry.wagin@ya.ru>
Notes
Notes:
svn path=/head/; revision=534784
-rw-r--r-- | net/asterisk13/Makefile | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/net/asterisk13/Makefile b/net/asterisk13/Makefile index ef3773515dfb..c10a0717f239 100644 --- a/net/asterisk13/Makefile +++ b/net/asterisk13/Makefile @@ -2,7 +2,7 @@ PORTNAME= asterisk PORTVERSION= 13.33.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= https://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 \ http://www.pjsip.org/release/${PJSIP_VERSION}/:PJSIP @@ -64,9 +64,10 @@ CONFLICTS_INSTALL= asterisk16 OPTIONS_DEFINE= ASTVERSION BACKTRACE CURL EXCHANGE FREETDS G729 LDAP LUA \ MP3PLAYER OOH323 OPTIMIZED_CFLAGS PJSIP PORTAUDIO RADIUS SNMP \ - SPANDSP SRTP SYSINFO XMPP + SPANDSP SRTP SYSINFO URIPARSER XMPP OPTIONS_DEFAULT= CURL FREETDS GSM LUA MP3PLAYER NEWT ODBC MYSQL PGSQL PJSIP \ - PORTAUDIO RADIUS SNMP SPANDSP SPEEX SRTP SQLITE2 VORBIS + PORTAUDIO RADIUS SNMP SPANDSP SPEEX SRTP SQLITE2 URIPARSER \ + VORBIS OPTIONS_DEFINE_i386= DAHDI OPTIONS_DEFINE_amd64= DAHDI @@ -107,6 +108,7 @@ OPUS_DESC?= Opus Codec PJSIP_DESC?= Build the PJSIP based SIP channel SRTP_DESC?= SecureRTP support SYSINFO_DESC?= Use devel/libsysinfo to get system information +URIPARSER_DESC?= Use RFC 3986 compliant uriparser library XMPP_DESC?= XMPP/GTALK support OPTIONS_SUB= yes @@ -115,12 +117,10 @@ ASTVERSION_RUN_DEPENDS= bash:shells/bash BACKTRACE_CONFIGURE_WITH= execinfo -CURL_CONFIGURE_ON= --with-libcurl -CURL_CONFIGURE_OFF= --with-libcurl=no +CURL_CONFIGURE_WITH= libcurl CURL_LIB_DEPENDS= libcurl.so:ftp/curl -DAHDI_CONFIGURE_ON= --with-dahdi --with-openr2 -DAHDI_CONFIGURE_OFF= --without-dahdi --without-openr2 +DAHDI_CONFIGURE_WITH= dahdi openr2 DAHDI_LIB_DEPENDS= libpri.so:misc/libpri \ libopenr2.so:misc/openr2 \ libtonezone.so:misc/dahdi @@ -196,6 +196,9 @@ SRTP_LIB_DEPENDS= libsrtp2.so:net/libsrtp2 SYSINFO_LIB_DEPENDS= libsysinfo.so:devel/libsysinfo +URIPARSER_CONFIGURE_WITH= uriparser +URIPARSER_LIB_DEPENDS= liburiparser.so:net/uriparser + VORBIS_CONFIGURE_WITH= ogg VORBIS_LIB_DEPENDS= libvorbis.so:audio/libvorbis \ libogg.so:audio/libogg |