]> git.ipfire.org Git - ipfire-2.x.git/blame_incremental - lfs/asterisk
Squid-accounting: New Version using dma mailservice
[ipfire-2.x.git] / lfs / asterisk
... / ...
CommitLineData
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007-2012 IPFire Team <info@ipfire.org> #
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
21include Config
22
23VER = 11.18.0
24
25THISAPP = asterisk-$(VER)
26DL_FILE = $(THISAPP).tar.gz
27DL_FROM = $(URL_IPFIRE)
28DIR_APP = $(DIR_SRC)/$(THISAPP)
29TARGET = $(DIR_INFO)/$(THISAPP)
30PROG = asterisk
31PAK_VER = 17
32
33DEPS = "libsrtp"
34
35###############################################################################
36# Top-level Rules
37###############################################################################
38
39objects = $(DL_FILE) \
40 asterisk-1.4-de-prompts.tar.gz \
41 asterisk-extra-sounds-en-gsm-1.4.15.tar.gz \
42 asterisk-moh-opsound-gsm-2.03.tar.gz
43
44$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
45asterisk-extra-sounds-en-gsm-1.4.15.tar.gz = $(URL_IPFIRE)/asterisk-extra-sounds-en-gsm-1.4.15.tar.gz
46asterisk-moh-opsound-gsm-2.03.tar.gz = $(URL_IPFIRE)/asterisk-moh-opsound-gsm-2.03.tar.gz
47asterisk-1.4-de-prompts.tar.gz = $(URL_IPFIRE)/asterisk-1.4-de-prompts.tar.gz
48
49$(DL_FILE)_MD5 = 3ddb42b54db200faccd68906df210a40
50asterisk-extra-sounds-en-gsm-1.4.15.tar.gz_MD5 = 5099fc65f49008e33ba7fb043a4ec995
51asterisk-moh-opsound-gsm-2.03.tar.gz_MD5 = 09066f55f1358f298bc1a6e4678a3ddf
52asterisk-1.4-de-prompts.tar.gz_MD5 = 626a2b95071a5505851e43874dfbfd5c
53
54install : $(TARGET)
55
56check : $(patsubst %,$(DIR_CHK)/%,$(objects))
57
58download :$(patsubst %,$(DIR_DL)/%,$(objects))
59
60md5 : $(subst %,%_MD5,$(objects))
61
62dist:
63 $(PAK)
64
65###############################################################################
66# Downloading, checking, md5sum
67###############################################################################
68
69$(patsubst %,$(DIR_CHK)/%,$(objects)) :
70 @$(CHECK)
71
72$(patsubst %,$(DIR_DL)/%,$(objects)) :
73 @$(LOAD)
74
75$(subst %,%_MD5,$(objects)) :
76 @$(MD5)
77
78###############################################################################
79# Installation Details
80###############################################################################
81
82$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
83 @$(PREBUILD)
84
85 # remove old directories and extract asterisk
86 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
87
88 # patch asterisk
89 cd $(DIR_APP) && patch -p4 < $(DIR_SRC)/src/patches/asterisk-no-ffmpeg.patch
90
91 # configure asterisk
92 cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/var/ipfire \
93 --without-oss \
94 --without-sdl \
95 --without-SDL_image \
96 --without-netsnmp \
97 --without-avcodec \
98 --without-vorbis \
99 --without-ogg \
100 --without-spandsp \
101 --disable-xmldoc
102
103 # enable additional features (include following sound-tars)
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
112
113 # add additional sounds
114 cd $(DIR_APP) && cp -fv $(DIR_DL)/asterisk-extra-sounds-en-gsm-1.4.15.tar.gz $(DIR_APP)/sounds/
115 cd $(DIR_APP) && cp -fv $(DIR_DL)/asterisk-moh-opsound-gsm-2.03.tar.gz $(DIR_APP)/sounds/
116
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
122
123 # compile and install
124 cd $(DIR_APP) && make $(MAKETUNING) all
125 cd $(DIR_APP) && make install
126 cd $(DIR_APP) && make samples
127
128 # add german sounds and remove README.txt
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
131
132 # remove build directories
133 @rm -rf $(DIR_APP) $(DIR_SRC)/asterisk-*
134
135 # copy additional ipfire scripts for asterisk
136 -mkdir -p /var/ipfire/asterisk
137 cp -vrf $(DIR_SRC)/config/asterisk/* /var/ipfire/asterisk/
138 chmod o+w /var/ipfire/asterisk
139 chown nobody:nobody -R /var/ipfire/asterisk
140 chown nobody:nobody -R /var/lib/asterisk
141
142# be sure all source is removed
143 @rm -rf $(DIR_APP) $(DIR_SRC)/asterisk-* $(DIR_SRC)/libsrtp*
144
145 # remember backup-location
146 install -v -m 644 $(DIR_SRC)/config/backup/includes/asterisk /var/ipfire/backup/addons/includes/asterisk
147
148 # Logrotate
149 mkdir -pv /etc/logrotate.d
150 install -v -m 644 $(DIR_SRC)/config/asterisk/asterisk.logrotate /etc/logrotate.d/asterisk
151
152 # generate softlink (or asterisk will not work properly)
153 ln -sf /var/ipfire/asterisk /etc/asterisk
154
155 # make asterisk start with reboot
156 ln -sf /etc/rc.d/init.d/asterisk /etc/rc.d/rc0.d/K30asterisk
157 ln -sf /etc/rc.d/init.d/asterisk /etc/rc.d/rc6.d/K30asterisk
158 ln -sf /etc/rc.d/init.d/asterisk /etc/rc.d/rc3.d/S30asterisk
159
160 # all done
161 @$(POSTBUILD)