]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/asterisk
Rote IP wird auf der Hauptseite bei DHCP angezeigt.
[ipfire-2.x.git] / lfs / asterisk
1 ###############################################################################
2 # This file is part of the IPCop Firewall. #
3 # #
4 # IPCop is free software; you can redistribute it and/or modify #
5 # it under the terms of the GNU General Public License as published by #
6 # the Free Software Foundation; either version 2 of the License, or #
7 # (at your option) any later version. #
8 # #
9 # IPCop is distributed in the hope that it will be useful, #
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
12 # GNU General Public License for more details. #
13 # #
14 # You should have received a copy of the GNU General Public License #
15 # along with IPCop; if not, write to the Free Software #
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
17 # #
18 # Makefiles are based on LFSMake, which is #
19 # Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
20 # #
21 ###############################################################################
22
23 ###############################################################################
24 # Definitions
25 ###############################################################################
26
27 include Config
28
29 VER = 1.4.8
30
31 THISAPP = asterisk-$(VER)
32 DL_FILE = $(THISAPP).tar.gz
33 DL_FROM = $(URL_IPFIRE)
34 DIR_APP = $(DIR_SRC)/$(THISAPP)
35 TARGET = $(DIR_INFO)/$(THISAPP)
36 PROG = asterisk
37 PAK_VER = 1
38
39 DESCDE = "Asterisk ist eine Telefonsoftware für Linux."
40 DESCEN = "Asterisk is a Private Branch Exchange."
41 DEPS = "sox zaptel libpri"
42
43 ###############################################################################
44 # Top-level Rules
45 ###############################################################################
46
47 objects = $(DL_FILE) \
48 asterisk-1.4-de-prompts.tar.gz \
49 asterisk-core-sounds-en-alaw-current.tar.gz \
50 asterisk-extra-sounds-en-alaw-current.tar.gz \
51 asterisk-addons-1.4.2.tar.gz
52
53 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
54 asterisk-core-sounds-en-alaw-current.tar.gz = $(URL_IPFIRE)/asterisk-core-sounds-en-alaw-current.tar.gz
55 asterisk-extra-sounds-en-alaw-current.tar.gz = $(URL_IPFIRE)/asterisk-extra-sounds-en-alaw-current.tar.gz
56 asterisk-1.4-de-prompts.tar.gz = $(URL_IPFIRE)/asterisk-1.4-de-prompts.tar.gz
57 asterisk-addons-1.4.2.tar.gz = $(URL_IPFIRE)/asterisk-addons-1.4.2.tar.gz
58
59 $(DL_FILE)_MD5 = 7263ff56ad93cbb5efb971a536ee6a51
60 asterisk-core-sounds-en-alaw-current.tar.gz_MD5 = e9446bee485d1b4fca6e8b05457dda25
61 asterisk-extra-sounds-en-alaw-current.tar.gz_MD5 = 89bca77c9bb91abd9e87447b3a9d3b07
62 asterisk-1.4-de-prompts.tar.gz_MD5 = 626a2b95071a5505851e43874dfbfd5c
63 asterisk-addons-1.4.2.tar.gz_MD5 = c080b02e6ddc81dab6a64691af890805
64
65 install : $(TARGET)
66
67 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
68
69 download :$(patsubst %,$(DIR_DL)/%,$(objects))
70
71 md5 : $(subst %,%_MD5,$(objects))
72
73 dist:
74 $(PAK)
75
76 ###############################################################################
77 # Downloading, checking, md5sum
78 ###############################################################################
79
80 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
81 @$(CHECK)
82
83 $(patsubst %,$(DIR_DL)/%,$(objects)) :
84 @$(LOAD)
85
86 $(subst %,%_MD5,$(objects)) :
87 @$(MD5)
88
89 ###############################################################################
90 # Installation Details
91 ###############################################################################
92
93 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
94 @$(PREBUILD)
95 @rm -rf $(DIR_APP) $(DIR_SRC)/asterisk-* && \
96 cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
97 cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/var/ipfire
98 cd $(DIR_APP) && cp -fv $(DIR_SRC)/config/asterisk/asterisk.makeopts \
99 menuselect.makeopts
100 cd $(DIR_APP) && cp -fv $(DIR_DL)/asterisk-core-sounds-en-alaw-current.tar.gz \
101 $(DIR_APP)/sounds/asterisk-core-sounds-en-alaw-1.4.7.tar.gz
102 cd $(DIR_APP) && cp -fv $(DIR_DL)/asterisk-extra-sounds-en-alaw-current.tar.gz \
103 $(DIR_APP)/sounds/asterisk-extra-sounds-en-alaw-1.4.6.tar.gz
104 cd $(DIR_APP) && make $(MAKETUNING) all
105 cd $(DIR_APP) && make install
106 cd $(DIR_APP) && make samples
107 cd $(DIR_SRC) && tar zxf $(DIR_DL)/asterisk-addons-1.4.2.tar.gz
108 cd $(DIR_SRC)/asterisk-addons-* && ./configure --prefix=/usr \
109 --sysconfdir=/var/ipfire
110 cd $(DIR_SRC)/asterisk-addons-* && cp -f $(DIR_SRC)/config/asterisk/addons.makeopts \
111 menuselect.makeopts
112 cd $(DIR_SRC)/asterisk-addons-* && make $(MAKETUNING) all install
113 tar xfz $(DIR_DL)/asterisk-1.4-de-prompts.tar.gz -C /var/lib/asterisk/sounds/
114 -rm -f /var/lib/asterisk/sounds/README.txt
115 @rm -rf $(DIR_APP) $(DIR_SRC)/asterisk-*
116 @$(POSTBUILD)