]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/asterisk
Updated asterisk (1.4.26.6) thx to hrbn for his work.
[people/pmueller/ipfire-2.x.git] / lfs / asterisk
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
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 #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 VER = 1.4.26.3
28
29 THISAPP = asterisk-$(VER)
30 DL_FILE = $(THISAPP).tar.gz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33 TARGET = $(DIR_INFO)/$(THISAPP)
34 PROG = asterisk
35 PAK_VER = 5
36
37 CHAN_CAPI = chan_capi-1.1.4
38
39 DEPS = "libpri spandsp sox dahdi"
40 #
41 # TODO: checked all needed dependencies for asterisk 1.4.26
42 # started from clean system, checked all libs with ldd and
43 # found this ones:
44 # "libpri dahdi-tools dahdi-linux alsa cyrus-sasl libogg libtiff libvorbis netsnmpd spandsp"
45 #
46
47 ###############################################################################
48 # Top-level Rules
49 ###############################################################################
50
51 objects = $(DL_FILE) \
52 asterisk-1.4-de-prompts.tar.gz \
53 asterisk-core-sounds-en-alaw-1.4.15.tar.gz \
54 asterisk-extra-sounds-en-alaw-1.4.9.tar.gz \
55 asterisk-addons-1.4.9.tar.gz \
56 agx-ast-addons-svn65.tgz \
57 $(CHAN_CAPI).tar.gz
58
59 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
60 asterisk-core-sounds-en-alaw-1.4.15.tar.gz = $(URL_IPFIRE)/asterisk-core-sounds-en-alaw-1.4.15.tar.gz
61 asterisk-extra-sounds-en-alaw-1.4.9.tar.gz = $(URL_IPFIRE)/asterisk-extra-sounds-en-alaw-1.4.9.tar.gz
62 asterisk-1.4-de-prompts.tar.gz = $(URL_IPFIRE)/asterisk-1.4-de-prompts.tar.gz
63 asterisk-addons-1.4.9.tar.gz = $(URL_IPFIRE)/asterisk-addons-1.4.9.tar.gz
64 agx-ast-addons-svn65.tgz = $(URL_IPFIRE)/agx-ast-addons-svn65.tgz
65 $(CHAN_CAPI).tar.gz = $(URL_IPFIRE)/$(CHAN_CAPI).tar.gz
66
67 $(DL_FILE)_MD5 = 04017dfdc8caeb8f4663b5dc4a9e1019
68 asterisk-core-sounds-en-alaw-1.4.15.tar.gz_MD5 = e9531e871d5b24e7b83d3ef946390d40
69 asterisk-extra-sounds-en-alaw-1.4.9.tar.gz_MD5 = 4fa1b8d096a66b3a39b6d0e52fe3f1ad
70 asterisk-1.4-de-prompts.tar.gz_MD5 = 626a2b95071a5505851e43874dfbfd5c
71 asterisk-addons-1.4.9.tar.gz_MD5 = 0c0ddf2386a9541e416e122ca082e611
72 agx-ast-addons-svn65.tgz_MD5 = 9372d818cc68337658110f793d0fd8e0
73 $(CHAN_CAPI).tar.gz_MD5 = 18fa835e724b7814deafbfa5b8cb01eb
74
75 install : $(TARGET)
76
77 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
78
79 download :$(patsubst %,$(DIR_DL)/%,$(objects))
80
81 md5 : $(subst %,%_MD5,$(objects))
82
83 dist:
84 $(PAK)
85
86 ###############################################################################
87 # Downloading, checking, md5sum
88 ###############################################################################
89
90 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
91 @$(CHECK)
92
93 $(patsubst %,$(DIR_DL)/%,$(objects)) :
94 @$(LOAD)
95
96 $(subst %,%_MD5,$(objects)) :
97 @$(MD5)
98
99 ###############################################################################
100 # Installation Details
101 ###############################################################################
102
103 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
104 @$(PREBUILD)
105
106 # remove old directories and extract asterisk
107 @rm -rf $(DIR_APP) $(DIR_SRC)/asterisk-* $(DIR_SRC)/$(CHAN_CAPI) $(DIR_SRC)/agx-ast-addons && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
108
109 # confiure asterisk
110 cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/var/ipfire
111
112 # enable additional features (include following sound-tars)
113 cd $(DIR_APP) && cp -fv $(DIR_SRC)/config/asterisk/asterisk.makeopts menuselect.makeopts
114
115 # add additional sounds
116 cd $(DIR_APP) && cp -fv $(DIR_DL)/asterisk-core-sounds-en-alaw-1.4.15.tar.gz $(DIR_APP)/sounds/asterisk-core-sounds-en-alaw-1.4.15.tar.gz
117 cd $(DIR_APP) && cp -fv $(DIR_DL)/asterisk-extra-sounds-en-alaw-1.4.9.tar.gz $(DIR_APP)/sounds/asterisk-extra-sounds-en-alaw-1.4.9.tar.gz
118
119 # compile and install
120 cd $(DIR_APP) && make $(MAKETUNING) all
121 cd $(DIR_APP) && make install
122 cd $(DIR_APP) && make samples
123
124 # extract and configure asterisk-addons
125 cd $(DIR_SRC) && tar zxf $(DIR_DL)/asterisk-addons-1.4.9.tar.gz
126 cd $(DIR_SRC)/asterisk-addons-* && ./configure --prefix=/usr --sysconfdir=/var/ipfire
127 # enable additional features (--> NOT NEEDED, DEFAULT CONFIG INCLUDES ALL)
128 #cd $(DIR_SRC)/asterisk-addons-* && cp -f $(DIR_SRC)/config/asterisk/addons.makeopts menuselect.makeopts
129 # make and install asterisk-addons
130 cd $(DIR_SRC)/asterisk-addons-* && make $(MAKETUNING) all
131 cd $(DIR_SRC)/asterisk-addons-* && make install
132 cd $(DIR_SRC)/asterisk-addons-* && make samples
133
134 # add german sounds and remove README.txt
135 tar xfz $(DIR_DL)/asterisk-1.4-de-prompts.tar.gz -C /var/lib/asterisk/sounds/
136 -rm -f /var/lib/asterisk/sounds/README.txt
137
138 # remove build directories
139 @rm -rf $(DIR_APP) $(DIR_SRC)/asterisk-*
140
141 # copy additional ipfire scripts for asterisk
142 -mkdir -p /var/ipfire/asterisk
143 cp -vrf $(DIR_SRC)/config/asterisk/* /var/ipfire/asterisk/
144 chmod o+w /var/ipfire/asterisk
145 chown nobody:nobody -R /var/ipfire/asterisk
146 ln -f -s /var/ipfire/asterisk/wakeup/wakeup.sh /etc/fcron.minutely/wakeup.sh
147
148 # build and install chan capi (needed for isdn)
149 cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(CHAN_CAPI).tar.gz
150 cd $(DIR_SRC)/$(CHAN_CAPI) && make $(MAKETUNING)
151 cd $(DIR_SRC)/$(CHAN_CAPI) && make install
152 @rm -rf $(DIR_SRC)/$(CHAN_CAPI)
153
154 # build FAX stuff (TODO: get newer version... where to download source?)
155 cd $(DIR_SRC) && tar zxf $(DIR_DL)/agx-ast-addons-svn65.tgz
156 # bugfix: disable app_confcall (not supported with dahdi, but we can take meetme)
157 cd $(DIR_SRC)/agx-ast-addons && echo "project (agx-ast-addons-zaptel)" > ./app-dahdi/CMakeLists.txt
158 cd $(DIR_SRC)/agx-ast-addons && echo >> ./app-dahdi/CMakeLists.txt
159 # end bugfix
160 cd $(DIR_SRC)/agx-ast-addons && ./configure.sh
161 cd $(DIR_SRC)/agx-ast-addons && ./build.sh
162 @rm -rf $(DIR_SRC)/agx-ast-addons
163
164 # be sure all source is removed
165 @rm -rf $(DIR_APP) $(DIR_SRC)/asterisk-*
166
167 # remember backup-location
168 install -v -m 644 $(DIR_SRC)/config/backup/includes/asterisk /var/ipfire/backup/addons/includes/asterisk
169
170 # generate softlink (or asterisk will not work properly)
171 ln -sf /var/ipfire/asterisk /etc/asterisk
172
173 # make asterisk start with reboot
174 ln -sf /etc/rc.d/init.d/asterisk /etc/rc.d/rc0.d/K30asterisk
175 ln -sf /etc/rc.d/init.d/asterisk /etc/rc.d/rc6.d/K30asterisk
176 ln -sf /etc/rc.d/init.d/asterisk /etc/rc.d/rc3.d/S30asterisk
177
178 # all done
179 @$(POSTBUILD)