]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/asterisk
asterisk addon: Fixed srtp buildroblems, disabled snmp, sdl and oss support.
[people/pmueller/ipfire-2.x.git] / lfs / asterisk
CommitLineData
5e69ef1a 1###############################################################################
5e69ef1a 2# #
70df8302 3# IPFire.org - A linux based firewall #
11b5b85c 4# Copyright (C) 2007-2012 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
5e69ef1a 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
5e69ef1a
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
5e69ef1a
MT
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
5e69ef1a
MT
18# #
19###############################################################################
20
5e69ef1a
MT
21include Config
22
ae77e0ba 23VER = 11.8.1
5e69ef1a
MT
24
25THISAPP = asterisk-$(VER)
26DL_FILE = $(THISAPP).tar.gz
1751628e 27DL_FROM = $(URL_IPFIRE)
5e69ef1a
MT
28DIR_APP = $(DIR_SRC)/$(THISAPP)
29TARGET = $(DIR_INFO)/$(THISAPP)
a8b159e7 30PROG = asterisk
ae77e0ba 31PAK_VER = 9
5e69ef1a 32
f1d418f5 33DEPS = "sqlite ffmpeg spandsp"
3489ebac 34
5e69ef1a
MT
35###############################################################################
36# Top-level Rules
37###############################################################################
38
39objects = $(DL_FILE) \
351aba94 40 srtp-1.4.2.tar.gz \
980245eb 41 asterisk-1.4-de-prompts.tar.gz \
ae77e0ba
DW
42 asterisk-extra-sounds-en-gsm-1.4.14.tar.gz \
43 asterisk-moh-opsound-gsm-2.03.tar.gz
5e69ef1a
MT
44
45$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
351aba94 46srtp-1.4.2.tar.gz = $(URL_IPFIRE)/srtp-1.4.2.tar.gz
ae77e0ba 47asterisk-extra-sounds-en-gsm-1.4.14.tar.gz = $(URL_IPFIRE)/asterisk-extra-sounds-en-gsm-1.4.14.tar.gz
eb5b3f95 48asterisk-moh-opsound-gsm-2.03.tar.gz = $(URL_IPFIRE)/asterisk-moh-opsound-gsm-2.03.tar.gz
61d0d586 49asterisk-1.4-de-prompts.tar.gz = $(URL_IPFIRE)/asterisk-1.4-de-prompts.tar.gz
5e69ef1a 50
ae77e0ba 51$(DL_FILE)_MD5 = 7bace8e6845188ca68b8d682d71cb1cc
351aba94 52srtp-1.4.2.tar.gz_MD5 = 7b0ffbfad9bbaf33d397027e031cb35a
ae77e0ba 53asterisk-extra-sounds-en-gsm-1.4.14.tar.gz_MD5 = ffc2e0ffd783c03fef5b75277dba0896
eb5b3f95 54asterisk-moh-opsound-gsm-2.03.tar.gz_MD5 = 09066f55f1358f298bc1a6e4678a3ddf
61d0d586 55asterisk-1.4-de-prompts.tar.gz_MD5 = 626a2b95071a5505851e43874dfbfd5c
5e69ef1a
MT
56
57install : $(TARGET)
58
59check : $(patsubst %,$(DIR_CHK)/%,$(objects))
60
61download :$(patsubst %,$(DIR_DL)/%,$(objects))
62
63md5 : $(subst %,%_MD5,$(objects))
64
65dist:
61d0d586 66 $(PAK)
5e69ef1a
MT
67
68###############################################################################
69# Downloading, checking, md5sum
70###############################################################################
71
72$(patsubst %,$(DIR_CHK)/%,$(objects)) :
73 @$(CHECK)
74
75$(patsubst %,$(DIR_DL)/%,$(objects)) :
76 @$(LOAD)
77
78$(subst %,%_MD5,$(objects)) :
79 @$(MD5)
80
81###############################################################################
82# Installation Details
83###############################################################################
84
85$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
86 @$(PREBUILD)
b6541fec 87
351aba94
DW
88 # build srtp
89 @rm -rf $(DIR_SRC)/srtp && cd $(DIR_SRC) && tar zxf $(DIR_DL)/srtp-1.4.2.tar.gz
f1d418f5 90 cd $(DIR_SRC)/srtp && ./configure --prefix=/usr && make uninstall && make && make install
351aba94 91
b6541fec 92 # remove old directories and extract asterisk
ae77e0ba 93 @rm -rf $(DIR_APP) $(DIR_SRC)/asterisk-* $(DIR_SRC)/agx-ast-addons && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
b6541fec 94
ae77e0ba 95 # configure asterisk
f1d418f5
DW
96 cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/var/ipfire \
97 --without-oss \
98 --without-sdl \
99 --without-SDL_image \
100 --without-netsnmp \
101 --disable-xmldoc
b6541fec
AF
102
103 # enable additional features (include following sound-tars)
f1d418f5
DW
104 cd $(DIR_APP) && make menuselect.makeopts && menuselect/menuselect \
105 --enable res_srtp \
106 --enable app_mysql \
107 --enable cdr_mysql \
108 --enable res_config_mysql \
109 --enable EXTRA-SOUNDS-EN-GSM \
110 --enable MOH-OPSOUND-GSM \
111 menuselect.makeopts
b6541fec
AF
112
113 # add additional sounds
ae77e0ba 114 cd $(DIR_APP) && cp -fv $(DIR_DL)/asterisk-extra-sounds-en-gsm-1.4.14.tar.gz $(DIR_APP)/sounds/
eb5b3f95 115 cd $(DIR_APP) && cp -fv $(DIR_DL)/asterisk-moh-opsound-gsm-2.03.tar.gz $(DIR_APP)/sounds/
b6541fec 116
eb5b3f95
AF
117 # Fix wrong cpu optimization (march=armv5tel)
118 cd $(DIR_APP) && sed -i -e "s|^PROC=armv5te.*|PROC=armv5te|g" makeopts
119
120 # Add armv5te to gsm codecs
121 cd $(DIR_APP) && sed -i -e "s|armv5b |*armv5te |g" codecs/gsm/Makefile
821f9f50 122
b6541fec 123 # compile and install
6f61f8c6
MT
124 cd $(DIR_APP) && make $(MAKETUNING) all
125 cd $(DIR_APP) && make install
126 cd $(DIR_APP) && make samples
b6541fec 127
b6541fec 128 # add german sounds and remove README.txt
61d0d586
MT
129 tar xfz $(DIR_DL)/asterisk-1.4-de-prompts.tar.gz -C /var/lib/asterisk/sounds/
130 -rm -f /var/lib/asterisk/sounds/README.txt
b6541fec
AF
131
132 # remove build directories
61d0d586 133 @rm -rf $(DIR_APP) $(DIR_SRC)/asterisk-*
b6541fec
AF
134
135 # copy additional ipfire scripts for asterisk
42dc0090
CS
136 -mkdir -p /var/ipfire/asterisk
137 cp -vrf $(DIR_SRC)/config/asterisk/* /var/ipfire/asterisk/
138 chmod o+w /var/ipfire/asterisk
6257cba2 139 chown nobody:nobody -R /var/ipfire/asterisk
42dc0090 140 ln -f -s /var/ipfire/asterisk/wakeup/wakeup.sh /etc/fcron.minutely/wakeup.sh
b6541fec 141
b6541fec
AF
142 # be sure all source is removed
143 @rm -rf $(DIR_APP) $(DIR_SRC)/asterisk-*
144
145 # remember backup-location
ef3002be 146 install -v -m 644 $(DIR_SRC)/config/backup/includes/asterisk /var/ipfire/backup/addons/includes/asterisk
b6541fec
AF
147
148 # generate softlink (or asterisk will not work properly)
149 ln -sf /var/ipfire/asterisk /etc/asterisk
150
151 # make asterisk start with reboot
152 ln -sf /etc/rc.d/init.d/asterisk /etc/rc.d/rc0.d/K30asterisk
153 ln -sf /etc/rc.d/init.d/asterisk /etc/rc.d/rc6.d/K30asterisk
154 ln -sf /etc/rc.d/init.d/asterisk /etc/rc.d/rc3.d/S30asterisk
155
156 # all done
5e69ef1a 157 @$(POSTBUILD)