]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/dahdi
Fix bad string in extrahd.cgi "founded drives".
[people/pmueller/ipfire-2.x.git] / lfs / dahdi
CommitLineData
3886437c
AF
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
25include Config
26
27ifeq "$(XEN)" "1"
28 VERSUFIX=ipfire-xen
29else
30 VERSUFIX=ipfire
31endif
32
6a34b288
AF
33VER = 2.2.1
34TVER = 2.2.1
3886437c 35
6a34b288 36DL_FILE = dahdi-linux-$(VER).tar.gz
3886437c
AF
37DL_FILE1 = dahdi-tools-$(TVER).tar.gz
38
39THISAPP = dahdi-$(VER)
40DL_FROM = $(URL_IPFIRE)
41DIR_APP = $(DIR_SRC)/dahdi-linux-$(VER)
42DIR_APP1 = $(DIR_SRC)/dahdi-tools-$(TVER)
43
44PROG = dahdi
45PAK_VER = 1
46
47DEPS = ""
48
49
50ifeq "$(KMOD)" "1"
51 TARGET = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER)-$(VERSUFIX)
52else
53 TARGET = $(DIR_INFO)/$(THISAPP)
54endif
55
56
57###############################################################################
58# Top-level Rules
59###############################################################################
60
6a34b288 61objects = $(DL_FILE) $(DL_FILE1) dahdi-linux-2.2.1-firmware.tar.bz2
3886437c
AF
62
63$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
64$(DL_FILE1) = $(DL_FROM)/$(DL_FILE1)
6a34b288
AF
65dahdi-linux-2.2.1-firmware.tar.bz2 = $(DL_FROM)/dahdi-linux-2.2.1-firmware.tar.bz2
66
67$(DL_FILE)_MD5 = 46e4abbe743830045364fc716d293e88
68$(DL_FILE1)_MD5 = 04e7097929851f744f777400125180db
69dahdi-linux-2.2.1-firmware.tar.bz2_MD5 = ccc50ded1641cd619e8d3a4615a6ad19
3886437c 70
3886437c
AF
71
72install : $(TARGET)
73
74check : $(patsubst %,$(DIR_CHK)/%,$(objects))
75
76download :$(patsubst %,$(DIR_DL)/%,$(objects))
77
78md5 : $(subst %,%_MD5,$(objects))
79
80dist:
81 $(PAK)
82
83###############################################################################
84# Downloading, checking, md5sum
85###############################################################################
86
87$(patsubst %,$(DIR_CHK)/%,$(objects)) :
88 @$(CHECK)
89
90$(patsubst %,$(DIR_DL)/%,$(objects)) :
91 @$(LOAD)
92
93$(subst %,%_MD5,$(objects)) :
94 @$(MD5)
95
96###############################################################################
97# Installation Details
98###############################################################################
99
100$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
101 @$(PREBUILD)
102
3886437c 103 rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
6a34b288 104 cd $(DIR_SRC) && tar jxf $(DIR_DL)/dahdi-linux-2.2.1-firmware.tar.bz2
3886437c 105 cd $(DIR_APP) && make $(MAKETUNING) clean all KVERS=$(KVER)
6a34b288
AF
106
107ifeq "$(KMOD)" "1"
3886437c
AF
108 cd $(DIR_APP) && make install-modules KVERS=$(KVER)-$(VERSUFIX)
109 @rm -rf $(DIR_APP)
110else
3886437c
AF
111 cd $(DIR_APP) && make install-devices install-include \
112 install-firmware install-xpp-firm KVERS=$(KVER)-$(VERSUFIX)
113 @rm -rf $(DIR_APP)
114
115 # remove previous generated symlink (if this a rebuild)
116 rm -rf /etc/dahdi
117
118 rm -rf $(DIR_APP1) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE1)
119 cd $(DIR_APP1) && ./configure --sysconfdir=/var/ipfire/asterisk
120 cd $(DIR_APP1) && make $(MAKETUNING) clean all
121 cd $(DIR_APP1) && make install
122
123 # Supress Error output because this erase the log
124 cd $(DIR_APP1) && make config 2>/dev/null
125
126 # remove build src
127 @rm -rf $(DIR_APP1)
128
129 # config stuff
130 ln -sf ../init.d/dahdi /etc/rc.d/rc0.d/K30dahdi
131 ln -sf ../init.d/dahdi /etc/rc.d/rc6.d/K30dahdi
132 ln -sf ../init.d/dahdi /etc/rc.d/rc3.d/S15dahdi
133 mv -f /etc/dahdi/genconf_parameters /var/ipfire/asterisk/dahdi/
134 mv -f /etc/dahdi/init.conf /var/ipfire/asterisk/dahdi/
135 mv -f /etc/dahdi/modules /var/ipfire/asterisk/dahdi/
136 rmdir /etc/dahdi
137 ln -s /var/ipfire/asterisk/dahdi /etc/dahdi
138
139 # make init.d-script work with ipfire
140 sed s/system=redhat/system=debian/ /etc/init.d/dahdi > /tmp/dahdi-temp
141 mv /tmp/dahdi-temp /etc/init.d/dahdi && chmod 755 /etc/init.d/dahdi
142
143 # add dummy-module (to get conference rooms work)
144 echo "#Dummy" >> /etc/dahdi/modules
145 echo "dahdi_dummy" >> /etc/dahdi/modules
146endif
147 @$(POSTBUILD)
148