824af437b94deac6c1c17cde631e1006dad9917c
[feed/telephony.git] / net / freeswitch-stable / Makefile
1 #
2 # Copyright (C) 2017 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 # TODO
9 #
10 # - try to use system xmlrpc-c once it compiles again :-)
11
12 include $(TOPDIR)/rules.mk
13
14 PRG_NAME:=freeswitch
15 PKG_NAME:=$(PRG_NAME)-stable
16 PKG_VERSION:=1.6.17
17 PKG_RELEASE:=1
18 PKG_MAINTAINER:=Sebastian Kemper <sebastian_ml@gmx.net>
19
20 PKG_SOURCE:=$(PRG_NAME)-$(PKG_VERSION).tar.xz
21 PKG_SOURCE_URL:=https://files.$(PRG_NAME).org/releases/$(PRG_NAME)
22 PKG_MD5SUM:=709b3e43362d86b9682a7db14eb344b74362493d68244dfc4e6f40218089d4e1
23
24 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PRG_NAME)-$(PKG_VERSION)
25
26 # configure fails without libjpeg, but it's only needed for mod_spandsp
27 PKG_BUILD_DEPENDS:= \
28 erlang \
29 libjpeg \
30 python \
31 swig/host
32
33 # With mod_ssml and mod_rayo enabled the parallel compiles always failed
34 #PKG_BUILD_PARALLEL:=1
35 PKG_INSTALL:=1
36
37 PKG_LICENSE:= \
38 AGPL-3.0 \
39 Apache-2.0 \
40 BSD-2-Clause \
41 BSD-3-Clause \
42 BSD-4-Clause \
43 BSD-like \
44 Beerware \
45 GPL-1.0+ \
46 GPL-2.0 \
47 GPL-2.0+ \
48 GPL-3.0 \
49 ISC \
50 LGPL-2.0+ \
51 LGPL-2.1 \
52 LGPL-2.1+ \
53 MIT/X11 (BSD like) \
54 MPL-1.1 \
55 OpenLDAP \
56 RSA-MD \
57 zlib-acknowledgement
58
59 PKG_LICENSE_FILES:=debian/copyright
60
61 FS_STABLE_DEPS_BASE:= \
62 +FS_STABLE_WITH_PGSQL:libpq \
63 +libopenssl \
64 +libuuid
65
66 FS_STABLE_DEPS:= \
67 $(FS_STABLE_DEPS_BASE) \
68 +FS_STABLE_WITH_FREETYPE:libfreetype \
69 +FS_STABLE_WITH_LIBEDIT:libedit \
70 +FS_STABLE_WITH_ODBC:unixodbc \
71 +FS_STABLE_WITH_PNG:libpng \
72 +libcurl \
73 +libpcre \
74 +libpthread \
75 +librt \
76 +libspeex \
77 +libspeexdsp \
78 +libstdcpp \
79 +libsqlite3 \
80 +zlib
81
82 FS_STABLE_MOD_AVAILABLE:= \
83 abstraction \
84 alsa \
85 amr \
86 amrwb \
87 av \
88 avmd \
89 basic \
90 bert \
91 blacklist \
92 callcenter \
93 cdr_csv \
94 cdr_mongodb \
95 cdr_pg_csv \
96 cdr_sqlite \
97 cidlookup \
98 cluechoo \
99 commands \
100 conference \
101 console \
102 curl \
103 db \
104 dialplan_asterisk \
105 dialplan_xml \
106 dingaling \
107 directory \
108 distributor \
109 dptools \
110 easyroute \
111 enum \
112 erlang_event \
113 esf \
114 esl \
115 event_multicast \
116 event_socket \
117 expr \
118 fifo \
119 format_cdr \
120 fsk \
121 fsv \
122 g723_1 \
123 g729 \
124 graylog2 \
125 h26x \
126 hash \
127 hiredis \
128 httapi \
129 http_cache \
130 isac \
131 json_cdr \
132 kazoo \
133 lcr \
134 ldap \
135 local_stream \
136 logfile \
137 loopback \
138 lua \
139 mp4v \
140 native_file \
141 nibblebill \
142 odbc_cdr \
143 opus \
144 oreka \
145 png \
146 prefix \
147 python \
148 rayo \
149 redis \
150 rss \
151 rtc \
152 rtmp \
153 say_de \
154 say_en \
155 say_es \
156 say_es_ar \
157 say_fa \
158 say_fr \
159 say_he \
160 say_hr \
161 say_hu \
162 say_it \
163 say_ja \
164 say_nl \
165 say_pl \
166 say_pt \
167 say_ru \
168 say_sv \
169 say_th \
170 say_zh \
171 shell_stream \
172 shout \
173 skinny \
174 sms \
175 snapshot \
176 sndfile \
177 snmp \
178 snom \
179 sofia \
180 sonar \
181 spandsp \
182 spy \
183 ssml \
184 stress \
185 syslog \
186 theora \
187 tone_stream \
188 translate \
189 tts_commandline \
190 unimrcp \
191 valet_parking \
192 verto \
193 voicemail \
194 voicemail_ivr \
195 xml_cdr \
196 xml_curl \
197 xml_ldap \
198 xml_rpc \
199 xml_scgi \
200 yaml
201
202 include $(INCLUDE_DIR)/package.mk
203
204 $(call include_mk, python-version.mk)
205 PYTHON_DIR:=$(STAGING_DIR)/usr
206 PYTHON_INC_DIR:=$(PYTHON_DIR)/include/python$(PYTHON_VERSION)
207 PYTHON_PKG_DIR:=/usr/lib/python$(PYTHON_VERSION)/site-packages
208
209 define Package/$(PKG_NAME)/install/bin
210 $(INSTALL_DIR) $(1)/usr/bin
211 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(2) $(1)/usr/bin
212 endef
213
214 define Package/$(PKG_NAME)/install/dir
215 for dir in $$$$(shell cd $(2); find -type d -print | sed 's|^./\?||'); \
216 do \
217 $(INSTALL_DIR) $(1)/$$$$$$$$dir; \
218 done
219 for file in $$$$(shell cd $(2); find -type f -print | sed 's|^./||'); \
220 do \
221 $(INSTALL_DATA) $(2)/$$$$$$$$file $(1)/$$$$$$$$file; \
222 done
223 endef
224
225 define Package/$(PKG_NAME)/install/lib
226 $(INSTALL_DIR) $(1)/usr/lib
227 $(CP) $(PKG_INSTALL_DIR)/usr/lib/$(2).so* $(1)/usr/lib
228 endef
229
230 define Package/$(PKG_NAME)/install/mod
231 $(INSTALL_DIR) $(1)/usr/lib/$(PRG_NAME)/mod
232 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/$(PRG_NAME)/mod/mod_$(2).so \
233 $(1)/usr/lib/$(PRG_NAME)/mod
234 ifeq ($(2),python)
235 $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
236 $(INSTALL_DATA) \
237 $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/$(PRG_NAME).py \
238 $(1)$(PYTHON_PKG_DIR)
239 endif
240 endef
241
242 define Package/$(PKG_NAME)/config
243 source "$(SOURCE)/Config.in"
244 endef
245
246 define Package/$(PKG_NAME)/Default
247 SUBMENU:=Telephony
248 SECTION:=net
249 CATEGORY:=Network
250 URL:=https://www.$(PRG_NAME).org
251 endef
252
253 define Package/$(PKG_NAME)
254 $(call Package/$(PKG_NAME)/Default)
255 TITLE:=Open source telephony platform, v$(PKG_VERSION)
256 MENU:=1
257 USERID:=$(PRG_NAME)=372:$(PRG_NAME)=372
258 DEPENDS:=$(FS_STABLE_DEPS)
259 CONFLICTS:=$(PRG_NAME)
260 endef
261
262 define Package/$(PKG_NAME)/description
263 FreeSWITCH is a scalable open source cross-platform telephony platform
264 designed to route and interconnect popular communication protocols
265 using audio, video, text or any other form of media.
266 endef
267
268 define Package/$(PKG_NAME)/conffiles
269 /etc/$(PRG_NAME)
270 /etc/default/$(PRG_NAME)
271 /etc/init.d/$(PRG_NAME)
272 endef
273
274 define Package/$(PKG_NAME)/install
275 $(call Package/$(PKG_NAME)/install/bin,$(1),$(PRG_NAME))
276 $(call Package/$(PKG_NAME)/install/lib,$(1),lib$(PRG_NAME))
277 $(INSTALL_DIR) $(1)/etc/$(PRG_NAME)/tls
278 $(INSTALL_DIR) $(1)/usr/share/$(PRG_NAME)/fonts
279 $(INSTALL_DIR) $(1)/usr/share/$(PRG_NAME)/grammar
280 $(INSTALL_DIR) $(1)/usr/share/$(PRG_NAME)/htdocs
281 $(INSTALL_DIR) $(1)/usr/share/$(PRG_NAME)/images
282 $(INSTALL_DIR) $(1)/usr/share/$(PRG_NAME)/scripts
283 $(INSTALL_DIR) $(1)/usr/share/$(PRG_NAME)/sounds
284 $(INSTALL_DIR) $(1)/etc/default
285 $(INSTALL_CONF) ./files/$(PRG_NAME).default $(1)/etc/default/$(PRG_NAME)
286 $(INSTALL_DIR) $(1)/etc/init.d
287 $(INSTALL_BIN) ./files/$(PRG_NAME).init $(1)/etc/init.d/$(PRG_NAME)
288 ifeq ($(CONFIG_FS_STABLE_WITH_LIBEDIT),)
289 $(SED) '/^ #procd_append_param command -nc -nf$$$$/s/#//' \
290 $(1)/etc/init.d/$(PRG_NAME)
291 endif
292 endef
293
294 define Package/$(PKG_NAME)/postinst
295 #!/bin/sh
296 if [ -z "$${IPKG_INSTROOT}" ]; then
297 # Prevent autostart of $(PRG_NAME)
298 touch /etc/$(PRG_NAME)_disabled
299
300 echo
301 echo "o-------------------------------------------------------------------o"
302 echo "| FreeSWITCH note |"
303 echo "o-------------------------------------------------------------------o"
304 echo "| Edit /etc/default/freeswitch to change basic init configuration. |"
305 echo "o-------------------------------------------------------------=^_^=-o"
306 echo
307 fi
308 exit 0
309 endef
310
311 define Package/$(PKG_NAME)-hotplug
312 $(call Package/$(PKG_NAME)/Default)
313 TITLE:=Hotplug script
314 DEPENDS:=$(PKG_NAME)
315 PKGARCH:=all
316 endef
317
318 define Package/$(PKG_NAME)-hotplug/description
319 This package includes a hotplug script for FreeSWITCH.
320 endef
321
322 define Package/$(PKG_NAME)-hotplug/install
323 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
324 $(INSTALL_BIN) ./files/$(PRG_NAME).hotplug \
325 $(1)/etc/hotplug.d/iface/99-$(PRG_NAME)
326 endef
327
328 define Package/$(PKG_NAME)-hotplug/postinst
329 #!/bin/sh
330 if [ -z "$${IPKG_INSTROOT}" ]; then
331 echo
332 echo "o-------------------------------------------------------------------o"
333 echo "| FreeSWITCH hotplug note |"
334 echo "o-------------------------------------------------------------------o"
335 echo "| See /etc/default/freeswitch for hotplug hints. |"
336 echo "o-------------------------------------------------------------=^_^=-o"
337 echo
338 fi
339 exit 0
340 endef
341
342 define Package/$(PKG_NAME)-python-esl
343 $(call Package/$(PKG_NAME)/Default)
344 TITLE:=Python ESL
345 DEPENDS:=$(PKG_NAME) +python-light
346 endef
347
348 define Package/$(PKG_NAME)-python-esl/description
349 This package contains the Python binding for FreeSWITCH's Event Socket
350 Library (ESL).
351 endef
352
353 define Package/$(PKG_NAME)-python-esl/install
354 $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
355 $(INSTALL_DATA) \
356 $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/ESL.py \
357 $(1)$(PYTHON_PKG_DIR)
358 $(INSTALL_BIN) \
359 $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/_ESL.so \
360 $(1)$(PYTHON_PKG_DIR)
361 endef
362
363 define Package/$(PKG_NAME)-timezones
364 $(call Package/$(PKG_NAME)/Default)
365 TITLE:=Timezones file
366 DEPENDS:=$(PKG_NAME)
367 PKGARCH:=all
368 endef
369
370 define Package/$(PKG_NAME)-timezones/description
371 This package includes a timezones file for FreeSWITCH.
372 endef
373
374 define Package/$(PKG_NAME)-timezones/install
375 $(INSTALL_DIR) $(1)/usr/share/$(PRG_NAME)/tz
376 $(INSTALL_DATA) \
377 $(PKG_BUILD_DIR)/conf/vanilla/autoload_configs/timezones.conf.xml \
378 $(1)/usr/share/$(PRG_NAME)/tz
379 endef
380
381 define Package/$(PKG_NAME)/Example
382 define Package/$(PKG_NAME)-example-$(1)
383 $(call Package/$(PKG_NAME)/Default)
384 TITLE:=Example configuration
385 DEPENDS:=$(PKG_NAME)
386 PKGARCH:=all
387 endef
388 define Package/$(PKG_NAME)-example-$(1)/description
389 This package does not install any configuration for FreeSWITCH into
390 /etc/freeswitch. The system administrator is completely responsible
391 for that directory. If you install one of the example configuration
392 packages, it will install the corresponding sample configuration to
393 /usr/share/freeswitch/conf where you can take a look at it.
394 endef
395 define Package/$(PKG_NAME)-example-$(1)/install
396 $(call Package/$(PKG_NAME)/install/dir,$$(1)/usr/share/$(PRG_NAME)/conf/$(1),$(PKG_BUILD_DIR)/conf/$(1))
397 endef
398 $$(eval $$(call BuildPackage,$(PKG_NAME)-example-$(1)))
399 endef
400
401 define Package/$(PKG_NAME)/Language
402 define Package/$(PKG_NAME)-lang-$(1)
403 $(call Package/$(PKG_NAME)/Default)
404 TITLE:=$(2) language files
405 DEPENDS:=$(PKG_NAME)
406 PKGARCH:=all
407 endef
408 define Package/$(PKG_NAME)-lang-$(1)/description
409 This package includes the $(2) language files for FreeSWITCH.
410 endef
411 define Package/$(PKG_NAME)-lang-$(1)/install
412 $(call Package/$(PKG_NAME)/install/dir,$$(1)/usr/share/$(PRG_NAME)/lang/$(1),$(PKG_BUILD_DIR)/conf/vanilla/lang/$(1))
413 endef
414 $$(eval $$(call BuildPackage,$(PKG_NAME)-lang-$(1)))
415 endef
416
417 define Package/$(PKG_NAME)/Module
418 define Package/$(PKG_NAME)-mod-$(1)
419 $(call Package/$(PKG_NAME)/Default)
420 TITLE:=$(2) module
421 DEPENDS:=$(PKG_NAME) $(4)
422 endef
423 define Package/$(PKG_NAME)-mod-$(1)/description
424 $(subst \n,$(newline),$(3))
425 endef
426 define Package/$(PKG_NAME)-mod-$(1)/install
427 $(call Package/$(PKG_NAME)/install/mod,$$(1),$(1))
428 endef
429 $$(eval $$(call BuildPackage,$(PKG_NAME)-mod-$(1)))
430 endef
431
432 define Package/$(PKG_NAME)/Util
433 define Package/$(PKG_NAME)-util-$(1)
434 $(call Package/$(PKG_NAME)/Default)
435 TITLE:=$(2) utility
436 DEPENDS:=$(PKG_NAME) $(4)
437 ifeq ($(5),y)
438 PKGARCH:=all
439 endif
440 endef
441 define Package/$(PKG_NAME)-util-$(1)/description
442 $(subst \n,$(newline),$(3))
443 endef
444 define Package/$(PKG_NAME)-util-$(1)/install
445 $(call Package/$(PKG_NAME)/install/bin,$$(1),$(1))
446 endef
447 ifeq ($(1)$(CONFIG_FS_STABLE_WITH_LIBEDIT),fs_cli)
448 define Package/$(PKG_NAME)-util-$(1)/postinst
449 #!/bin/sh
450 if [ -z "$${IPKG_INSTROOT}" ]; then
451 echo
452 echo "o-------------------------------------------------------------------o"
453 echo "| fs_cli note |"
454 echo "o-------------------------------------------------------------------o"
455 echo "| Your FreeSWITCH was compiled without libedit support. Due to an |"
456 echo "| interop issue it's possible that when you try to exit fs_cli with |"
457 echo "| Ctrl-D, you'll see messages flashing by and have to kill fs_cli |"
458 echo "| manually. To avoid this you can either use Ctrl-C instead (fs_cli |"
459 echo "| needs to be started with '-i' for this to work; you could create |"
460 echo "| an appropriate alias in /etc/profile) or type /exit, /quit or |"
461 echo "| /bye. |"
462 echo "o-------------------------------------------------------------=^_^=-o"
463 echo
464 fi
465 exit 0
466 endef
467 endif
468 $$(eval $$(call BuildPackage,$(PKG_NAME)-util-$(1)))
469 endef
470
471 # we neither need host-perl nor host-php
472 CONFIGURE_VARS+= \
473 ac_cv_prog_PERL=false \
474 ac_cv_have_perl=no \
475 ac_cv_prog_PHP=false \
476 ac_cv_have_php=no \
477 ac_cv_prog_PHP_CONFIG=false \
478 ac_cv_have_php_config=no
479
480 # The autoconf variables in this block are OK for both musl and glibc
481 CONFIGURE_VARS+= \
482 ac_cv_file__dev_ptmx=yes \
483 ac_cv_file__dev_urandom=yes \
484 ac_cv_file_dbd_apr_dbd_mysql_c=no \
485 ac_cv_free_null=yes \
486 ac_cv_func_mmap_fixed_mapped=yes \
487 ac_cv_func_pthread_rwlock_init=yes \
488 ac_cv_func_sem_open=yes \
489 ac_cv_have_working_memmove=yes \
490 ac_cv_negative_eai=yes \
491 ac_cv_o_nonblock_inherited=no \
492 ac_cv_struct_rlimit=yes \
493 apr_cv_epoll=yes \
494 apr_cv_gai_addrconfig=yes \
495 apr_cv_mutex_recursive=yes \
496 apr_cv_process_shared_works=yes \
497 apr_cv_pthreads_lib=-lpthread \
498 apr_cv_tcp_nodelay_with_cork=yes \
499 apr_cv_type_rwlock_t=yes
500
501 # Regarding apr_cv_mutex_robust_shared=no see
502 # http://www.openwall.com/lists/musl/2016/11/26/1
503 # _Don't_ remove quotes below!
504 ifeq ($(CONFIG_LIBC),"musl")
505 CONFIGURE_VARS+= \
506 apr_cv_mutex_robust_shared=no \
507 ac_cv_strerror_r_rc_int=yes
508 else
509 CONFIGURE_VARS+= \
510 apr_cv_mutex_robust_shared=yes
511 endif
512
513 # fs_cli
514 CONFIGURE_VARS+= \
515 disable_cc=yes
516
517 CONFIGURE_VARS+= \
518 _python_sysroot="$(STAGING_DIR)" \
519 _python_prefix="/usr" \
520 _python_exec_prefix="/usr"
521
522 CONFIGURE_ARGS+= \
523 --build=$(GNU_HOST_NAME) \
524 --host=$(GNU_TARGET_NAME) \
525 --target=$(GNU_TARGET_NAME) \
526 --prefix=/usr/share/$(PRG_NAME) \
527 --bindir=/usr/bin \
528 --libdir=/usr/lib \
529 --srcdir=$(PKG_BUILD_DIR) \
530 --sysconfdir=/etc \
531 --disable-dependency-tracking \
532 --disable-static \
533 --disable-system-xmlrpc-c \
534 --enable-fhs \
535 --with-cachedir=/tmp/$(PRG_NAME)/cache \
536 --with-certsdir=/etc/$(PRG_NAME)/tls \
537 --with-dbdir=/tmp/$(PRG_NAME)/db \
538 --with-fontsdir=/usr/share/$(PRG_NAME)/fonts \
539 --with-grammardir=/usr/share/$(PRG_NAME)/grammar \
540 --with-htdocsdir=/usr/share/$(PRG_NAME)/htdocs \
541 --with-imagesdir=/usr/share/$(PRG_NAME)/images \
542 --with-logfiledir=/tmp/$(PRG_NAME)/log \
543 --with-modinstdir=/usr/lib/$(PRG_NAME)/mod \
544 --with-recordingsdir=/tmp/$(PRG_NAME)/recordings \
545 --with-rundir=/var/run/$(PRG_NAME) \
546 --with-scriptdir=/usr/share/$(PRG_NAME)/scripts \
547 --with-soundsdir=/usr/share/$(PRG_NAME)/sounds \
548 --with-storagedir=/tmp/$(PRG_NAME)/storage \
549 $(call autoconf_bool,CONFIG_FS_STABLE_WITH_LIBEDIT,core-libedit-support) \
550 $(call autoconf_bool,CONFIG_FS_STABLE_WITH_ODBC,core-odbc-support) \
551 $(call autoconf_bool,CONFIG_FS_STABLE_WITH_SRTP,srtp) \
552 $(call autoconf_bool,CONFIG_FS_STABLE_WITH_ZRTP,zrtp) \
553 $(if $(CONFIG_FS_STABLE_WITH_DEBUG),,--disable-debug) \
554 $(if $(CONFIG_FS_STABLE_WITH_FREETYPE),,--without-freetype) \
555 $(if $(CONFIG_FS_STABLE_WITH_LIBYUV),,--disable-libyuv) \
556 $(if $(CONFIG_FS_STABLE_WITH_ODBC),--with-odbc-lib="$(STAGING_DIR)/usr/lib") \
557 $(if $(CONFIG_FS_STABLE_WITH_ODBC),--with-odbc="$(STAGING_DIR)/usr") \
558 $(if $(CONFIG_FS_STABLE_WITH_PGSQL),--enable-core-pgsql-support,--without-pgsql) \
559 $(if $(CONFIG_FS_STABLE_WITH_PNG),,--without-png) \
560 $(if $(CONFIG_FS_STABLE_WITH_VPX),,--disable-libvpx)
561
562 define Build/Prepare
563 $(call Build/Prepare/Default)
564 $(SED) '/^#/!s/^/#/' $(PKG_BUILD_DIR)/modules.conf
565 $(foreach m,$(FS_STABLE_MOD_AVAILABLE),
566 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-$(m)),
567 $(SED) '/mod_$(m)$$$$/s/^#//' $(PKG_BUILD_DIR)/modules.conf))
568
569 $(SED) 's|^LOCAL_CFLAGS=.*|LOCAL_CFLAGS=-I$(PYTHON_INC_DIR)|' \
570 $(PKG_BUILD_DIR)/libs/esl/python/Makefile
571 $(SED) 's|^LOCAL_LDFLAGS=.*|LOCAL_LDFLAGS=$(TARGET_LDFLAGS) -lpython$(PYTHON_VERSION)|' \
572 $(PKG_BUILD_DIR)/libs/esl/python/Makefile
573 $(SED) 's|^SITE_DIR=.*|SITE_DIR=$$$$(DESTDIR)$(PYTHON_PKG_DIR)|' \
574 $(PKG_BUILD_DIR)/libs/esl/python/Makefile
575 $(SED)'s|swig2.0|$(STAGING_DIR_HOSTPKG)/bin/swig|' \
576 $(PKG_BUILD_DIR)/libs/esl/python/Makefile
577 $(SED)'s|swig2.0|$(STAGING_DIR_HOSTPKG)/bin/swig|' \
578 $(PKG_BUILD_DIR)/src/mod/languages/mod_python/Makefile.am
579 $(SED)'s|^PYTHON_SITE_DIR=.*|PYTHON_SITE_DIR=$(PYTHON_PKG_DIR)|' \
580 $(PKG_BUILD_DIR)/src/mod/languages/mod_python/Makefile.am
581
582 # Hack for mod_unimrcp - it has a build-time dep on mod_sofia
583 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-unimrcp),)
584 ifeq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-sofia),)
585 $(SED) '/mod_sofia$$$$/s/^#//' $(PKG_BUILD_DIR)/modules.conf
586 endif
587 endif
588 endef
589
590 define Build/Configure
591 find $(PKG_BUILD_DIR) -name missing -type f -exec rm {} \;
592 cd $(PKG_BUILD_DIR); $(AM_TOOL_PATHS) ./rebootstrap.sh
593 $(call Build/Configure/Default)
594 endef
595
596 define Build/Compile
597 $(call Build/Compile/Default,-C $(PKG_BUILD_DIR)/src/mod/languages/mod_python swigclean)
598 $(call Build/Compile/Default)
599 $(call Build/Compile/Default,-C $(PKG_BUILD_DIR)/libs/esl swigclean pymod)
600 endef
601
602 define Build/Install
603 $(call Build/Install/Default)
604 $(call Build/Install/Default,-C $(PKG_BUILD_DIR)/libs/esl pymod-install)
605 endef
606
607 $(eval $(call BuildPackage,$(PKG_NAME)))
608 $(eval $(call BuildPackage,$(PKG_NAME)-hotplug))
609 $(eval $(call BuildPackage,$(PKG_NAME)-python-esl))
610 $(eval $(call BuildPackage,$(PKG_NAME)-timezones))
611
612 ################################
613 # FreeSWITCH example configs
614 # Params:
615 # 1 - Package subname
616 ################################
617
618 $(eval $(call Package/$(PKG_NAME)/Example,curl))
619 $(eval $(call Package/$(PKG_NAME)/Example,insideout))
620 $(eval $(call Package/$(PKG_NAME)/Example,minimal))
621 $(eval $(call Package/$(PKG_NAME)/Example,rayo))
622 $(eval $(call Package/$(PKG_NAME)/Example,sbc))
623 $(eval $(call Package/$(PKG_NAME)/Example,softphone))
624 $(eval $(call Package/$(PKG_NAME)/Example,testing))
625 $(eval $(call Package/$(PKG_NAME)/Example,vanilla))
626
627 ################################
628 # FreeSWITCH language files
629 # Params:
630 # 1 - Language code
631 # 2 - Language
632 ################################
633
634 $(eval $(call Package/$(PKG_NAME)/Language,de,German))
635 $(eval $(call Package/$(PKG_NAME)/Language,en,English))
636 $(eval $(call Package/$(PKG_NAME)/Language,es,Spanish))
637 $(eval $(call Package/$(PKG_NAME)/Language,fr,French))
638 $(eval $(call Package/$(PKG_NAME)/Language,he,Hebrew))
639 $(eval $(call Package/$(PKG_NAME)/Language,pt,Portuguese))
640 $(eval $(call Package/$(PKG_NAME)/Language,ru,Russian))
641 $(eval $(call Package/$(PKG_NAME)/Language,sv,Swedish))
642
643 ################################
644 # FreeSWITCH modules
645 # Params:
646 # 1 - Package subname
647 # 2 - Package title
648 # 3 - Module description
649 # 4 - Module dependencies
650 ################################
651
652 $(eval $(call Package/$(PKG_NAME)/Module,abstraction,API abstraction,This module provides a way to create new API functions via regex\nrewriting.,))
653 $(eval $(call Package/$(PKG_NAME)/Module,alsa,ALSA endpoint,ALSA endpoint module.,+alsa-lib))
654 $(eval $(call Package/$(PKG_NAME)/Module,amr,AMR passthrough,Passthrough AMR codec support.,))
655 $(eval $(call Package/$(PKG_NAME)/Module,amrwb,AMR wideband passthrough,Passthrough AMR wideband codec support.,))
656 $(eval $(call Package/$(PKG_NAME)/Module,av,AV,Video codec and format support via FFmpeg.,+libffmpeg-full @BROKEN))
657 $(eval $(call Package/$(PKG_NAME)/Module,avmd,Voicemail detection,This module attempts to determine when a voicemail system has answered\nthe call.,))
658 $(eval $(call Package/$(PKG_NAME)/Module,basic,BASIC,BASIC module for FreeSWITCH.,))
659 $(eval $(call Package/$(PKG_NAME)/Module,bert,BERT,Line testing tool.,))
660 $(eval $(call Package/$(PKG_NAME)/Module,blacklist,Blacklist helper,This module provides tools to blacklist callers.,))
661 $(eval $(call Package/$(PKG_NAME)/Module,callcenter,Call center,This module implements Automated Call Distribution queues.,))
662 $(eval $(call Package/$(PKG_NAME)/Module,cdr_csv,CSV CDR,CSV Call Detail Record handler.,))
663 $(eval $(call Package/$(PKG_NAME)/Module,cdr_mongodb,MongoDB CDR,MongoDB Call Detail Record handler.,))
664 $(eval $(call Package/$(PKG_NAME)/Module,cdr_pg_csv,PostgreSQL CDR,PostgreSQL Call Detail Record handler.,@FS_STABLE_WITH_PGSQL))
665 $(eval $(call Package/$(PKG_NAME)/Module,cdr_sqlite,SQLite CDR,SQLite Call Detail Record handler.,))
666 $(eval $(call Package/$(PKG_NAME)/Module,cidlookup,Caller ID lookup,This module provides an API for querying caller ID name and location\ndata.,))
667 $(eval $(call Package/$(PKG_NAME)/Module,cluechoo,Clue Choo,This demo module renders a Clue Choo train on the FreeSWITCH console.,+libncurses))
668 $(eval $(call Package/$(PKG_NAME)/Module,commands,Commands,This module provides miscellaneous API commands.,))
669 $(eval $(call Package/$(PKG_NAME)/Module,conference,Conference,This module provides multi-party conferencing.,))
670 $(eval $(call Package/$(PKG_NAME)/Module,console,Console logger,Allows control over what messages get logged to the console. When\nFreeSWITCH is compiled without libedit support - this is not the\ndefault - mod_console has no effect because the init script starts\nFreeSWITCH with the console disabled to work around an\ninteroperability issue that causes high CPU load.,))
671 $(eval $(call Package/$(PKG_NAME)/Module,curl,cURL,This module provides an API for making HTTP requests with cURL.,))
672 $(eval $(call Package/$(PKG_NAME)/Module,db,DB,This module implements a simple db API with group support. Also can be\nused as a limit db backend.,))
673 $(eval $(call Package/$(PKG_NAME)/Module,dialplan_asterisk,Asterisk dialplan,Asterisk extensions.conf style dialplan parser.,))
674 $(eval $(call Package/$(PKG_NAME)/Module,dialplan_xml,XML dialplan,Standard FreeSWITCH XML dialplan support.,))
675 $(eval $(call Package/$(PKG_NAME)/Module,dingaling,Generic XMPP,Allows FreeSWITCH to be used as a client for XMPP Servers.,))
676 $(eval $(call Package/$(PKG_NAME)/Module,directory,Dial-by-name directory,This module implements a dial-by-name directory IVR.,))
677 $(eval $(call Package/$(PKG_NAME)/Module,distributor,Load distributor,This module implements a mechanism for performing load balancing.,))
678 $(eval $(call Package/$(PKG_NAME)/Module,dptools,Dialplan tools,This module implements basic dialplan tools.,))
679 $(eval $(call Package/$(PKG_NAME)/Module,easyroute,DID routing,This module does destination lookup based on DID.,))
680 $(eval $(call Package/$(PKG_NAME)/Module,enum,ENUM routing,This module implements ENUM support.,+libldns))
681 $(eval $(call Package/$(PKG_NAME)/Module,erlang_event,Erlang event,Erlang event module.,))
682 $(eval $(call Package/$(PKG_NAME)/Module,esf,Multicast,This module adds multi-cast support.,))
683 $(eval $(call Package/$(PKG_NAME)/Module,esl,Single ESL,This module adds an API for generating one-off ESL requests.,))
684 $(eval $(call Package/$(PKG_NAME)/Module,event_multicast,Multicast Event,Multicast Event System for FreeSWITCH.,))
685 $(eval $(call Package/$(PKG_NAME)/Module,event_socket,Event socket,Sends events via a single socket. Needed for fs_cli.,))
686 $(eval $(call Package/$(PKG_NAME)/Module,expr,Expr,This module adds expr support for expression evaluation.,))
687 $(eval $(call Package/$(PKG_NAME)/Module,fifo,FIFO,This module adds a first-in first-out queue system.,))
688 $(eval $(call Package/$(PKG_NAME)/Module,format_cdr,Multiformat CDR,A superset of mod_json_cdr and mod_xml_cdr.,))
689 $(eval $(call Package/$(PKG_NAME)/Module,fsk,FSK,This module adds frequency-shift keying support which can be used to\nsend and receive caller ID.,))
690 $(eval $(call Package/$(PKG_NAME)/Module,fsv,FSV,This module provides dialplan applications for recording and playing\nvideos.,))
691 $(eval $(call Package/$(PKG_NAME)/Module,g723_1,G.723.1 passthrough,G.723.1 codec passthrough.,))
692 $(eval $(call Package/$(PKG_NAME)/Module,g729,G.729 passthrough,G.729 codec passthrough.,))
693 $(eval $(call Package/$(PKG_NAME)/Module,graylog2,Graylog2 logger,GELF logger for Graylog2 and Logstash.,))
694 $(eval $(call Package/$(PKG_NAME)/Module,h26x,H.26x passthrough,H.26x video codec passthrough.,))
695 $(eval $(call Package/$(PKG_NAME)/Module,hash,Hash,This module provides a key-value in-memory datastore. Usable as a\nlimit backend.,))
696 $(eval $(call Package/$(PKG_NAME)/Module,hiredis,Redis client,This module provides a mechanism to use Redis as a datastore.,libhiredis))
697 $(eval $(call Package/$(PKG_NAME)/Module,httapi,HT-TAPI,This module provides an API for controlling the switch by responding\nto HTTP requests.,))
698 $(eval $(call Package/$(PKG_NAME)/Module,http_cache,HTTP GET with caching,This module provides an API for making HTTP GET requests where the\nresult is cached.,))
699 $(eval $(call Package/$(PKG_NAME)/Module,isac,iSAC,iSAC codec support.,))
700 $(eval $(call Package/$(PKG_NAME)/Module,json_cdr,JSON CDR,JSON-based Call Detail Record handler.,))
701 $(eval $(call Package/$(PKG_NAME)/Module,kazoo,Kazoo,Kazoo module for FreeSWITCH.,))
702 $(eval $(call Package/$(PKG_NAME)/Module,lcr,LCR,This module adds a facility for least-cost routing.,))
703 $(eval $(call Package/$(PKG_NAME)/Module,ldap,LDAP,LDAP module for FreeSWITCH.,+libopenldap))
704 $(eval $(call Package/$(PKG_NAME)/Module,local_stream,Local stream,Connects multiple channels to a looped stream.,))
705 $(eval $(call Package/$(PKG_NAME)/Module,logfile,File logger,Logs FreeSWITCH output to a file.,))
706 $(eval $(call Package/$(PKG_NAME)/Module,loopback,Loopback,A loopback channel driver.,))
707 $(eval $(call Package/$(PKG_NAME)/Module,lua,Lua,Lua language interface for FreeSWITCH.,+liblua))
708 $(eval $(call Package/$(PKG_NAME)/Module,mp4v,MP4 video passthrough,MP4 video passthrough..,))
709 $(eval $(call Package/$(PKG_NAME)/Module,native_file,Native file,Plays files that are already encoded in the right format.,))
710 $(eval $(call Package/$(PKG_NAME)/Module,nibblebill,Nibblebill,This module allows for real-time accounting of a cash balance and\nusing that information for call routing.,))
711 $(eval $(call Package/$(PKG_NAME)/Module,odbc_cdr,ODBC CDR,ODBC Call Detail Record handler.,))
712 $(eval $(call Package/$(PKG_NAME)/Module,opus,Opus,Opus codec support.,+libopus))
713 $(eval $(call Package/$(PKG_NAME)/Module,oreka,Oreka,This module provides media recording with the Oreka cross-platform\naudio stream recording and retrieval system.,))
714 $(eval $(call Package/$(PKG_NAME)/Module,png,PNG,Allows playback of video using PNG files.,))
715 $(eval $(call Package/$(PKG_NAME)/Module,prefix,Prefix match,This module provides a data store with fast lookups by the longest\nprefix match rule.,))
716 $(eval $(call Package/$(PKG_NAME)/Module,python,Python,Python support module.,+python-light))
717 $(eval $(call Package/$(PKG_NAME)/Module,rayo,Rayo,Rayo/XMPP 3PCC server for FreeSWITCH.,+$(PKG_NAME)-mod-ssml))
718 $(eval $(call Package/$(PKG_NAME)/Module,redis,Redis limit backend,This module provides a mechanism to use Redis as a limit backend data\nstore.,))
719 $(eval $(call Package/$(PKG_NAME)/Module,rss,RSS,Parses and reads XML based RSS feeds and reads the entries aloud via a TTS engine.,))
720 $(eval $(call Package/$(PKG_NAME)/Module,rtc,Media streaming,Media streaming as used by WebRTC and mod_verto.,))
721 $(eval $(call Package/$(PKG_NAME)/Module,rtmp,RTMP endpoint,RTMP endpoint support. Allows FreeSWITCH to be used from RTMP clients.,))
722 $(eval $(call Package/$(PKG_NAME)/Module,say_de,German Say,Uses prerecorded sounds to read or say various things.,))
723 $(eval $(call Package/$(PKG_NAME)/Module,say_en,English Say,Uses prerecorded sounds to read or say various things.,))
724 $(eval $(call Package/$(PKG_NAME)/Module,say_es,Spanish Say,Uses prerecorded sounds to read or say various things.,))
725 $(eval $(call Package/$(PKG_NAME)/Module,say_es_ar,Argentinian Spanish Say,Uses prerecorded sounds to read or say various things.,))
726 $(eval $(call Package/$(PKG_NAME)/Module,say_fa,Persian Say,Uses prerecorded sounds to read or say various things.,))
727 $(eval $(call Package/$(PKG_NAME)/Module,say_fr,French Say,Uses prerecorded sounds to read or say various things.,))
728 $(eval $(call Package/$(PKG_NAME)/Module,say_he,Hebrew Say,Uses prerecorded sounds to read or say various things.,))
729 $(eval $(call Package/$(PKG_NAME)/Module,say_hr,Croatian Say,Uses prerecorded sounds to read or say various things.,))
730 $(eval $(call Package/$(PKG_NAME)/Module,say_hu,Hungarian Say,Uses prerecorded sounds to read or say various things.,))
731 $(eval $(call Package/$(PKG_NAME)/Module,say_it,Italian Say,Uses prerecorded sounds to read or say various things.,))
732 $(eval $(call Package/$(PKG_NAME)/Module,say_ja,Japanese Say,Uses prerecorded sounds to read or say various things.,))
733 $(eval $(call Package/$(PKG_NAME)/Module,say_nl,Dutch Say,Uses prerecorded sounds to read or say various things.,))
734 $(eval $(call Package/$(PKG_NAME)/Module,say_pl,Polish Say,Uses prerecorded sounds to read or say various things.,))
735 $(eval $(call Package/$(PKG_NAME)/Module,say_pt,Portuguese Say,Uses prerecorded sounds to read or say various things.,))
736 $(eval $(call Package/$(PKG_NAME)/Module,say_ru,Russian Say,Uses prerecorded sounds to read or say various things.,))
737 $(eval $(call Package/$(PKG_NAME)/Module,say_sv,Swedish Say,Uses prerecorded sounds to read or say various things.,))
738 $(eval $(call Package/$(PKG_NAME)/Module,say_th,Thai Say,Uses prerecorded sounds to read or say various things.,))
739 $(eval $(call Package/$(PKG_NAME)/Module,say_zh,Chinese Say,Uses prerecorded sounds to read or say various things.,))
740 $(eval $(call Package/$(PKG_NAME)/Module,shell_stream,Shell stream,Allows to stream audio from an arbitrary shell command.,))
741 $(eval $(call Package/$(PKG_NAME)/Module,shout,Shout,Allows to stream audio from MP3s or Shoutcast streams.,+lame-lib +libmpg123 +libshout))
742 $(eval $(call Package/$(PKG_NAME)/Module,skinny,Skinny,Skinny Call Control Protocol endpoint support.,))
743 $(eval $(call Package/$(PKG_NAME)/Module,sms,SMS,This module provides an abstract facility for interfacing with SMS\nsystems.,))
744 $(eval $(call Package/$(PKG_NAME)/Module,snapshot,Snapshot,This module can record a sliding window of audio and take snapshots\nto disk.,))
745 $(eval $(call Package/$(PKG_NAME)/Module,sndfile,Soundfile,Adds sound format support via libsndfile.,+libsndfile))
746 $(eval $(call Package/$(PKG_NAME)/Module,snmp,SNMP,An SNMP stats reporter.,+libnetsnmp))
747 $(eval $(call Package/$(PKG_NAME)/Module,snom,SNOM,This module implements features specific to SNOM phones.,))
748 $(eval $(call Package/$(PKG_NAME)/Module,sofia,Sofia SIP,SIP module.,))
749 $(eval $(call Package/$(PKG_NAME)/Module,sonar,Sonar,This module measures the latency on an audio link by sending audible\naudio sonar pings.,))
750 $(eval $(call Package/$(PKG_NAME)/Module,spandsp,SpanDSP,This module implements SpanDSP fax. It includes DSP and codec\nfunctionality.,+libjpeg +liblzma))
751 $(eval $(call Package/$(PKG_NAME)/Module,spy,User Spy,This module adds the ability to monitor the audio of a channel.,))
752 $(eval $(call Package/$(PKG_NAME)/Module,ssml,SSML,mod_ssml is a FreeSWITCH module that renders SSML into audio. This\nmodule requires a text-to-speech module for speech synthesis.,))
753 $(eval $(call Package/$(PKG_NAME)/Module,stress,Stress,This module attempts to detect voice stress on an audio channel.,))
754 $(eval $(call Package/$(PKG_NAME)/Module,syslog,Syslog logger,Logs FreeSWITCH output to the syslog.,))
755 $(eval $(call Package/$(PKG_NAME)/Module,theora,Theora passthrough,Theora video codec passthrough.,))
756 $(eval $(call Package/$(PKG_NAME)/Module,tone_stream,Tone stream,Tone generation stream.,))
757 $(eval $(call Package/$(PKG_NAME)/Module,translate,Number translation,This module implements number translation.,))
758 $(eval $(call Package/$(PKG_NAME)/Module,tts_commandline,TTS command-line,Run a command-line and play the output file.,))
759 $(eval $(call Package/$(PKG_NAME)/Module,unimrcp,UniMRCP,Allows communication with Media Resource Control Protocol servers.,))
760 $(eval $(call Package/$(PKG_NAME)/Module,valet_parking,Valet parking,This module implements the valet call parking strategy.,))
761 $(eval $(call Package/$(PKG_NAME)/Module,verto,Verto,Verto signaling protocol.,))
762 $(eval $(call Package/$(PKG_NAME)/Module,voicemail,Voicemail,This module provides a voicemail system.,))
763 $(eval $(call Package/$(PKG_NAME)/Module,voicemail_ivr,Voicemail IVR,This module provides an extensible voicemail IVR system.,))
764 $(eval $(call Package/$(PKG_NAME)/Module,xml_cdr,XML CDR,XML Call Detail Record handler.,))
765 $(eval $(call Package/$(PKG_NAME)/Module,xml_curl,XML cURL,Provides an XML cURL interfaces to pull dynamic XML configuration for\nFreeSWITCH over HTTP.,))
766 $(eval $(call Package/$(PKG_NAME)/Module,xml_ldap,XML LDAP,LDAP XML gateway.,+libopenldap))
767 $(eval $(call Package/$(PKG_NAME)/Module,xml_rpc,XML RPC,Allows using the webapi to control FreeSWITCH.,))
768 $(eval $(call Package/$(PKG_NAME)/Module,xml_scgi,XML SCGI,SCGI XML Gateway.,))
769 $(eval $(call Package/$(PKG_NAME)/Module,yaml,YAML,YAML language module.,+libyaml))
770
771 ################################
772 # FreeSWITCH utilities
773 # Params:
774 # 1 - Package subname
775 # 2 - Package title
776 # 3 - Utility description
777 # 4 - Utility dependencies
778 # 5 - Utility is a script (y/n)
779 ################################
780
781 $(eval $(call Package/$(PKG_NAME)/Util,fs_cli,CLI,The fs_cli program is a Command-Line Interface that allows a user to\nconnect to a FreeSWITCH instance running on the local or a remote\nsystem.,$(FS_STABLE_DEPS_BASE) +FS_STABLE_WITH_LIBEDIT:libedit,n))
782 $(eval $(call Package/$(PKG_NAME)/Util,fs_encode,Sound file conversion,Format conversion of sound files so the result can be used by\nmod_native_file.,$(FS_STABLE_DEPS) +$(PKG_NAME)-mod-native_file +$(PKG_NAME)-mod-sndfile +$(PKG_NAME)-mod-spandsp,n))
783 $(eval $(call Package/$(PKG_NAME)/Util,fs_ivrd,IVR daemon,The FreeSWITCH IVR daemon is an abstraction layer that sits on top of\nthe ESL. The basic idea is that the ivrd will allow the user to have\na STDIN/STDOUT interface for simple call control.,$(FS_STABLE_DEPS_BASE),n))
784 $(eval $(call Package/$(PKG_NAME)/Util,gentls_cert,TLS certificate,Can be used to create TLS certificates and setup CAs.,+openssl-util,y))
785 $(eval $(call Package/$(PKG_NAME)/Util,tone2wav,Sound file generation,Generates a sound file from a teletone script. The output can be in\nany format that is supported by libsndfile.,$(FS_STABLE_DEPS) +$(PKG_NAME)-mod-sndfile,n))