Date: Sun, 13 Dec 2015 13:17:47 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403665 - in head/net: . asterisk-chan_sccp Message-ID: <201512131317.tBDDHl1V043083@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Sun Dec 13 13:17:47 2015 New Revision: 403665 URL: https://svnweb.freebsd.org/changeset/ports/403665 Log: New port: net/asterisk-chan_sccp Replacement for the SCCP channel driver in Asterisk. Extended features include: - Shared Lines, - Presence / BLF, - Customizable Feature Buttons, - Custom Device State. - Conference with Phone-UI WWW: https://sourceforge.net/projects/chan-sccp-b PR: 204346 Submitted by: Diederik de Groot <ddegroot@talon.nl> Added: head/net/asterisk-chan_sccp/ head/net/asterisk-chan_sccp/Makefile (contents, props changed) head/net/asterisk-chan_sccp/distinfo (contents, props changed) head/net/asterisk-chan_sccp/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Dec 13 13:16:31 2015 (r403664) +++ head/net/Makefile Sun Dec 13 13:17:47 2015 (r403665) @@ -27,6 +27,7 @@ SUBDIR += asio SUBDIR += aslookup SUBDIR += asterisk + SUBDIR += asterisk-chan_sccp SUBDIR += asterisk-g72x SUBDIR += asterisk11 SUBDIR += asterisk13 Added: head/net/asterisk-chan_sccp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/asterisk-chan_sccp/Makefile Sun Dec 13 13:17:47 2015 (r403665) @@ -0,0 +1,53 @@ +# Created by: Diederik de Groot +# $FreeBSD$ + +PORTNAME= chan_sccp +PORTVERSION= 4.2.1 +CATEGORIES= net +MASTER_SITES= SF/chan-sccp-b/V4/ +PKGNAMEPREFIX= asterisk- +DISTNAME= Chan_SCCP-4.2.1_STABLE_r6370 + +MAINTAINER= ddegroot@talon.nl +COMMENT= Replacement for the SCCP channel driver in Asterisk + +LICENSE= GPLv1 + +GNU_CONFIGURE= yes +USES= iconv compiler libtool +CONFIGURE_ARGS+= --enable-video --enable-video-layer +CONFIGURE_ARGS+= --enable-conference --enable-advanced-functions +CONFIGURE_ARGS+= ${ICONV_CONFIGURE_ARG} +NO_OPTIONS_SORT= yes + +LDFLAGS+= -L${LOCALBASE}/lib + +PLIST_FILES= lib/asterisk/modules/chan_sccp.so \ + etc/asterisk/sccp.conf \ + etc/asterisk/sccp.conf.annotated + +OPTIONS_SINGLE= ASTVER +OPTIONS_SINGLE_ASTVER= ASTERISK18 ASTERISK11 ASTERISK13 +OPTIONS_DEFAULT= ASTERISK13 + +ASTERISK18_DESC= Depend on Asterisk 1.8 +ASTERISK11_DESC= Depend on Asterisk 11 +ASTERISK13_DESC= Depend on Asterisk 13 + +ASTERISK18_BUILD_DEPENDS= asterisk:${PORTSDIR}/net/asterisk +ASTERISK18_RUN_DEPENDS= asterisk:${PORTSDIR}/net/asterisk + +ASTERISK11_BUILD_DEPENDS= asterisk:${PORTSDIR}/net/asterisk11 +ASTERISK11_RUN_DEPENDS= asterisk:${PORTSDIR}/net/asterisk11 + +ASTERISK13_BUILD_DEPENDS= asterisk:${PORTSDIR}/net/asterisk13 +ASTERISK13_RUN_DEPENDS= asterisk:${PORTSDIR}/net/asterisk13 + +post-build: + ${STRIP_CMD} ${WRKSRC}/src/.libs/chan_sccp.so + +post-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/asterisk + (cd ${WRKSRC}/conf && ${CP} sccp.conf sccp.conf.annotated ${STAGEDIR}${PREFIX}/etc/asterisk/) + +.include <bsd.port.mk> Added: head/net/asterisk-chan_sccp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/asterisk-chan_sccp/distinfo Sun Dec 13 13:17:47 2015 (r403665) @@ -0,0 +1,2 @@ +SHA256 (Chan_SCCP-4.2.1_STABLE_r6370.tar.gz) = a5301446cc8bb6e036319a6a04983b18cb873b24aa0efd089b49a3e4f83cbe4d +SIZE (Chan_SCCP-4.2.1_STABLE_r6370.tar.gz) = 1350462 Added: head/net/asterisk-chan_sccp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/asterisk-chan_sccp/pkg-descr Sun Dec 13 13:17:47 2015 (r403665) @@ -0,0 +1,9 @@ +Replacement for the SCCP channel driver in Asterisk. +Extended features include: + - Shared Lines + - Presence / BLF + - Customizable Feature Buttons + - Custom Device State + - Conference with Phone-UI + +WWW: https://sourceforge.net/projects/chan-sccp-b
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512131317.tBDDHl1V043083>