82b14d24b6580b940b491791bfbb489f1114cd3b
[feed/telephony.git] / net / yate / Makefile
1 #
2 # Copyright (C) 2006-2018 OpenWrt.org
3 # Copyright (C) 2006-2011 SMBPhone
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=yate
12 PKG_VERSION:=6.3.0-1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://yate.null.ro/tarballs/yate6/
17 PKG_HASH:=cbd3afc417da7b26b4d7f57146c815a667db2bf1ff4d1ea9dae986954cbcd62f
18
19 PKG_LICENSE:=GPL-2.0
20 PKG_LICENSE_FILES:=COPYING
21 PKG_MAINTAINER:=Jiri Slachta <jiri@slachta.eu>
22
23 PKG_FIXUP:=autoreconf
24 PKG_BUILD_PARALLEL:=1
25 PKG_INSTALL:=1
26
27 # Yate currently does not compile with FORTIFY_SOURCE enabled
28 PKG_FORTIFY_SOURCE:=0
29
30 PKG_CONFIG_DEPENDS:= \
31 CONFIG_PACKAGE_$(PKG_NAME)-mod-faxchan \
32 CONFIG_PACKAGE_$(PKG_NAME)-mod-g722webrtc \
33 CONFIG_PACKAGE_$(PKG_NAME)-mod-ilbccodec \
34 CONFIG_PACKAGE_$(PKG_NAME)-mod-ilbcwebrtc \
35 CONFIG_PACKAGE_$(PKG_NAME)-mod-isaccodec \
36 CONFIG_PACKAGE_$(PKG_NAME)-mod-mysqldb \
37 CONFIG_PACKAGE_$(PKG_NAME)-mod-openssl \
38 CONFIG_PACKAGE_$(PKG_NAME)-mod-pgsqldb \
39 CONFIG_PACKAGE_$(PKG_NAME)-mod-speexcodec \
40 CONFIG_PACKAGE_$(PKG_NAME)-mod-sqlitedb \
41 CONFIG_PACKAGE_$(PKG_NAME)-mod-zapcard \
42 CONFIG_PACKAGE_$(PKG_NAME)-mod-zlibcompress \
43 CONFIG_SOFT_FLOAT
44
45 include $(INCLUDE_DIR)/package.mk
46 include $(INCLUDE_DIR)/nls.mk
47
48 TAR_OPTIONS+= --strip-components 1
49 TAR_CMD=$(HOST_TAR) -C $(1) $(TAR_OPTIONS)
50
51 define Package/$(PKG_NAME)/Default
52 SUBMENU:=Telephony
53 SECTION:=net
54 CATEGORY:=Network
55 URL:=http://yate.null.ro/
56 endef
57
58 define Package/$(PKG_NAME)
59 $(call Package/yate/Default)
60 DEPENDS:=+libpthread +libstdcpp
61 TITLE:=Yet Another Telephony Engine
62 MENU:=1
63 endef
64
65 define Package/$(PKG_NAME)/conffiles
66 /etc/yate/yate.conf
67 /etc/init.d/yate
68 endef
69
70 define Package/$(PKG_NAME)/Default/description
71 Is a next-generation telephony engine focused on the VoIP and PSTN. It does
72 SIP, H.323, IAX, PSTN, and more.
73 endef
74
75 define Package/$(PKG_NAME)-scripts-perl
76 $(call Package/yate/Default)
77 DEPENDS += $(PKG_NAME) \
78 +PACKAGE_$(PKG_NAME)-scripts-perl:$(PKG_NAME)-mod-extmodule \
79 +PACKAGE_$(PKG_NAME)-scripts-perl:perlbase-data \
80 @!arc
81 TITLE:= Perl module for Yate
82 endef
83
84 define Package/$(PKG_NAME)-sounds
85 $(call Package/yate/Default)
86 DEPENDS += $(PKG_NAME)
87 TITLE := Sounds for Yate
88 endef
89
90 # Otherwise yate ignores CPPFLAGS
91 TARGET_CFLAGS += $(TARGET_CPPFLAGS)
92
93 CONFIGURE_ARGS+= \
94 --disable-sctp \
95 --disable-tdmcard \
96 --disable-wanpipe \
97 --disable-wpcard \
98 --without-amrnb \
99 --without-coredumper \
100 --without-doxygen \
101 --without-kdoc \
102 --without-libgsm \
103 --without-libqt4 \
104 --without-openh323 \
105 --without-pwlib \
106 --without-qtstatic \
107 --without-wphwec \
108 $(if $(CONFIG_x86_64),--enable-sse2) \
109 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-faxchan),--with-spandsp="$(STAGING_DIR)/usr/include",--without-spandsp) \
110 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-g722webrtc),--enable-g722-webrtc,--disable-g722-webrtc) \
111 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-ilbccodec),--enable-ilbc,--disable-ilbc) \
112 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-ilbcwebrtc),--enable-ilbc-webrtc,--disable-ilbc-webrtc) \
113 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-mysqldb),--with-mysql=yes,--without-mysql) \
114 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-openssl),--with-openssl,--without-openssl) \
115 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-pgsqldb),--with-libpq="$(STAGING_DIR)/usr",--without-libpq) \
116 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-speexcodec),--with-libspeex="$(STAGING_DIR)/usr/include",--without-libspeex) \
117 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-sqlitedb),--with-sqlite,--without-sqlite) \
118 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-zapcard),,--disable-dahdi --disable-zaptel) \
119 $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mod-zlibcompress),--with-zlib="$(STAGING_DIR)/usr",--without-zlib)
120
121 # The regexp implementation of musl 1.1.24 is not fully compatible with yate
122 CONFIGURE_ARGS+= \
123 --enable-internalregex
124
125 ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-isaccodec),)
126 CONFIGURE_ARGS+=$(if $(CONFIG_SOFT_FLOAT),--disable-isac-float --enable-isac-fixed,--disable-isac-fixed --enable-isac-float)
127 else
128 CONFIGURE_ARGS+= \
129 --disable-isac-fixed \
130 --disable-isac-float
131 endif
132
133 define Package/$(PKG_NAME)/install
134 $(INSTALL_DIR) $(1)/usr/lib
135
136 for yatelib in "" asn sig mgcp jabber script; do \
137 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libyate$$$${yatelib}.so* $(1)/usr/lib ;\
138 done
139
140 $(INSTALL_DIR) $(1)/usr/bin
141 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/yate $(1)/usr/bin/
142 $(INSTALL_DIR) $(1)/etc/$(PKG_NAME)
143 $(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/yate/yate.conf $(1)/etc/$(PKG_NAME)/yate.conf
144 $(INSTALL_DIR) $(1)/etc/init.d
145 $(INSTALL_BIN) ./files/yate.init $(1)/etc/init.d/yate
146 endef
147
148 define Package/$(PKG_NAME)-scripts-perl/install
149 $(INSTALL_DIR) $(1)/usr/share/yate/scripts
150 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/yate/scripts/Yate.pm $(1)/usr/share/yate/scripts/
151 $(INSTALL_BIN) ./files/banbrutes.pl $(1)/usr/share/yate/scripts/
152 endef
153
154 define Package/$(PKG_NAME)-sounds/install
155 $(INSTALL_DIR) $(1)/usr/share/yate/sounds
156 $(CP) $(PKG_INSTALL_DIR)/usr/share/yate/sounds/ $(1)/usr/share/yate/
157 endef
158
159 define Build/InstallDev
160 $(INSTALL_DIR) $(STAGING_DIR)/usr/include
161 $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(STAGING_DIR)/usr/include/
162 $(INSTALL_DIR) $(STAGING_DIR)/usr/lib
163 $(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(STAGING_DIR)/usr/lib/
164 endef
165
166 define BuildPlugin
167 define Package/$(PKG_NAME)-mod-$(subst _,-,$(1))
168 $(call Package/yate/Default)
169 DEPENDS:= $(PKG_NAME) $(patsubst +%,+PACKAGE_$(PKG_NAME)-mod-$(subst _,-,$(1)):%,$(4))
170 TITLE:=$(3)
171 endef
172
173 define Package/$(PKG_NAME)-mod-$(subst _,-,$(1))/conffiles
174 $(if $(6),/etc/yate/$(1).conf)
175 endef
176
177 define Package/$(PKG_NAME)-mod-$(subst _,-,$(1))/description
178 $(3) module for $(PKG_NAME)
179 endef
180
181 define Package/$(PKG_NAME)-mod-$(subst _,-,$(1))/install
182 $$(INSTALL_DIR) $$(1)/usr/lib/yate/$(2)
183 $$(INSTALL_BIN) $$(PKG_INSTALL_DIR)/usr/lib/yate/$(2)/$(1).yate $$(1)/usr/lib/yate/$(2)/$(1).yate
184 if [ -f $$(PKG_INSTALL_DIR)/etc/yate/$(1).conf ]; then \
185 $$(INSTALL_DIR) $$(1)/etc/yate ;\
186 $$(INSTALL_CONF) $$(PKG_INSTALL_DIR)/etc/yate/$(1).conf $$(1)/etc/yate/ ;\
187 fi
188 $(if $(5),$(foreach extra_file,$(5),\
189 $(INSTALL_DIR) $$(1)$(dir $(extra_file)) ; \
190 $(CP) $(PKG_INSTALL_DIR)$(extra_file) $$(1)$(extra_file) ; \
191 ),)
192 endef
193
194 $$(eval $$(call BuildPackage,$(PKG_NAME)-mod-$(subst _,-,$(1))))
195 endef
196
197 $(eval $(call BuildPackage,$(PKG_NAME)))
198 $(eval $(call BuildPackage,$(PKG_NAME)-scripts-perl))
199 $(eval $(call BuildPackage,$(PKG_NAME)-sounds))
200
201 ############################
202 # 1: plugin
203 # 2: client, server or empty
204 # 3: description
205 # 4: depends
206 # 5: extra files
207 # 6: has a config sample (y)
208 # ##########################
209 $(eval $(call BuildPlugin,accfile,server,SIP or H.323 client (from file),,,y))
210 $(eval $(call BuildPlugin,alsachan,client,ALSA Sound Channel,+alsa-lib))
211 $(eval $(call BuildPlugin,amrnbcodec,,AMR-NB Codec,@BROKEN)) # Missing amr-nb library
212 $(eval $(call BuildPlugin,analog,server,Analog (e.g. POTS) Channel,,,y))
213 $(eval $(call BuildPlugin,analogdetect,server,Analog Data Detector,))
214 $(eval $(call BuildPlugin,analyzer,,Test Call Generator and AQ Analyzer,))
215 $(eval $(call BuildPlugin,cache,server,CNAM and LNP memory caches,,,y))
216 $(eval $(call BuildPlugin,callcounters,server,Count Active Call Legs,,,y))
217 $(eval $(call BuildPlugin,callfork,,Call Forker,,,y))
218 $(eval $(call BuildPlugin,callgen,,Call Generator,))
219 $(eval $(call BuildPlugin,camel_map,sig,MAP/CAMEL TCAP <-> XML translators,,,y))
220 $(eval $(call BuildPlugin,ccongestion,server,Accept Status from Installed Engine Monitors,,,y))
221 $(eval $(call BuildPlugin,cdrbuild,,Call Detail Record Builder,,,y))
222 $(eval $(call BuildPlugin,cdrcombine,,Call Detail Records per call instead of per call leg,))
223 $(eval $(call BuildPlugin,cdrfile,,Call Detail Record to File,,,y))
224 $(eval $(call BuildPlugin,ciscosm,server,SS7 Support,,,y))
225 $(eval $(call BuildPlugin,clustering,server,Clustering Server Support,,,y))
226 $(eval $(call BuildPlugin,conference,,Conference Room Mixer,))
227 $(eval $(call BuildPlugin,cpuload,server,Monitor CPU load and Inform Yate,,,y))
228 $(eval $(call BuildPlugin,dbpbx,server,PBX IVR and Multi-routing from Database,,,y))
229 $(eval $(call BuildPlugin,dbwave,server,Wav Media for DB Storage,+$(PKG_NAME)-mod-wavefile))
230 $(eval $(call BuildPlugin,dumbchan,,Dummy Channel,))
231 $(eval $(call BuildPlugin,enumroute,,ENUM Routing,,,y))
232 $(eval $(call BuildPlugin,eventlogs,server,Write events and alarms to log files,,,y))
233 $(eval $(call BuildPlugin,extmodule,,External Module Handler,,/usr/share/yate/scripts/echo.sh,y))
234 $(eval $(call BuildPlugin,faxchan,,Spandsp Fax Channel,+libspandsp))
235 $(eval $(call BuildPlugin,fileinfo,,File Info Holder,,,y))
236 $(eval $(call BuildPlugin,filetransfer,,File Transfer Driver,,,y))
237 $(eval $(call BuildPlugin,g722webrtc,,G.722 codec using library based on WebRTC project,))
238 $(eval $(call BuildPlugin,gvoice,,Google Voice support,,,y))
239 $(eval $(call BuildPlugin,heartbeat,server,Linux-HA compatible heartbeat,,,y))
240 $(eval $(call BuildPlugin,ilbccodec,,iLBC Codec,))
241 $(eval $(call BuildPlugin,ilbcwebrtc,,iLBC Codec from the WebRTC project,))
242 $(eval $(call BuildPlugin,isaccodec,,internet Speech Audio Codec,))
243 $(eval $(call BuildPlugin,isupmangler,sig,ISUP parameter mangling in a STP,,,y))
244 $(eval $(call BuildPlugin,jabberclient,client,Jabber Client,,,y))
245 $(eval $(call BuildPlugin,jabberserver,jabber,Jabber Server,,,y))
246 $(eval $(call BuildPlugin,javascript,,Routing using the embedded Javascript language,,,y))
247 $(eval $(call BuildPlugin,jbfeatures,jabber,Jabber Server Features,,,y))
248 $(eval $(call BuildPlugin,lateroute,server,Last Chance Routing,,,y))
249 $(eval $(call BuildPlugin,mgcpca,server,Media Gateway Control Protocol Agent,,,y))
250 $(eval $(call BuildPlugin,mgcpgw,server,Media Gateway Control Protocol Gateway,,,y))
251 $(eval $(call BuildPlugin,moh,,On Hold (music) Generator,,,y))
252 $(eval $(call BuildPlugin,monitoring,server,Monitoring/gathering Information,,,y))
253 $(eval $(call BuildPlugin,mrcpspeech,server,MRCP v2 Voice/Tone Detector and Synthesizer,))
254 $(eval $(call BuildPlugin,msgsniff,,Sample Message Sniffer,))
255 $(eval $(call BuildPlugin,mux,,Data Multiplexor,,,y))
256 $(eval $(call BuildPlugin,mysqldb,server,MySQL Backend DB,+libmysqlclient-r,,y))
257 $(eval $(call BuildPlugin,openssl,,Encrypted transport (OpenSSL),+libopenssl,,y))
258 $(eval $(call BuildPlugin,osschan,client,OSS Sound Channel,))
259 $(eval $(call BuildPlugin,park,server,Call Parking,))
260 $(eval $(call BuildPlugin,pbx,,PBX Message Handlers,))
261 $(eval $(call BuildPlugin,pbxassist,server,Full featured PBX and IVR,,,y))
262 $(eval $(call BuildPlugin,pgsqldb,server,PostgrestSQL Backend DB,+libpq))
263 $(eval $(call BuildPlugin,presence,server,Presence,,,y))
264 $(eval $(call BuildPlugin,queues,server,Call Distribution and Queues from Database,,,y))
265 $(eval $(call BuildPlugin,queuesnotify,server,Notify when queued call status changes,,,y))
266 $(eval $(call BuildPlugin,regexroute,,Regular Expression Based Routing,,,y))
267 $(eval $(call BuildPlugin,regfile,server,Registration based on users in file,,,y))
268 $(eval $(call BuildPlugin,register,server,Call Detail Record to a database,,,y))
269 $(eval $(call BuildPlugin,rmanager,,Yate Remote Management,,,y))
270 $(eval $(call BuildPlugin,sigtransport,server,SIGTRAN (SS7 over IP) connection provider,,,y))
271 $(eval $(call BuildPlugin,sip_cnam_lnp,sip,Query CNAM and LNP databases using SIP INVITE,,,y))
272 $(eval $(call BuildPlugin,sipfeatures,server,SIP Features (SUBSCRIBE/NOTIFY),,,y))
273 $(eval $(call BuildPlugin,speexcodec,,Speex codec module written by Olaf Conradi,+libspeex))
274 $(eval $(call BuildPlugin,sqlitedb,server,SQLite Support,+libsqlite3,,y))
275 $(eval $(call BuildPlugin,ss7_lnp_ansi,sig,Query LNP Databases,,,y))
276 $(eval $(call BuildPlugin,subscription,server,Subcription handler and presence notifier,,,y))
277 $(eval $(call BuildPlugin,tdmcard,server,TDM Cards Signalling and Data Driver,@BROKEN)) # Missing TDM libraries
278 $(eval $(call BuildPlugin,tonedetect,,Detectors for Various Tones,))
279 $(eval $(call BuildPlugin,tonegen,,Tones Generator,,,y))
280 $(eval $(call BuildPlugin,users,server,Users,,,y))
281 $(eval $(call BuildPlugin,wavefile,,Wav file Record and Playback,))
282 $(eval $(call BuildPlugin,wiresniff,,Capture interface for YATE messages,,,y))
283 $(eval $(call BuildPlugin,wpcard,server,Wanpipe PRI cards Signalling and Data Driver,@BROKEN)) # Mising wanpipe and PRI libraries
284 $(eval $(call BuildPlugin,yiaxchan,,IAX Channel,,,y))
285 $(eval $(call BuildPlugin,yjinglechan,,Jingle Channel,,,y))
286 $(eval $(call BuildPlugin,yradius,server,RADIUS Client,,,y))
287 $(eval $(call BuildPlugin,yrtpchan,,RTP Channel and Other Data Helper,,,y))
288 $(eval $(call BuildPlugin,ysigchan,server,SS7/ISDN Protocols - Yate Signalling Library,,,y))
289 $(eval $(call BuildPlugin,ysipchan,,SIP Channel,,,y))
290 $(eval $(call BuildPlugin,ysnmpagent,server,SNMP Protocol Agent,,/usr/share/yate/data/NULL-TEAM-MIB.txt /usr/share/yate/data/snmp_mib.conf /usr/share/yate/data/YATE-MIB.txt,y))
291 $(eval $(call BuildPlugin,ysockschan,,SOCKS Channel,,,y))
292 $(eval $(call BuildPlugin,ystunchan,,STUN Support,,,y))
293 $(eval $(call BuildPlugin,zapcard,server,Zaptel PRI/TDM/FXS/FXO cards,@!aarch64 +kmod-dahdi,,y))
294 $(eval $(call BuildPlugin,zlibcompress,,Zlib Compression,+zlib,,y))