1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk/asterisk-1.8.0.ebuild,v 1.2 2010/10/27 22:57:59 chainsaw Exp $
EAPI=3
inherit autotools base eutils linux-info multilib
MY_P="${PN}-${PV/_/-}"
DESCRIPTION="Asterisk: A Modular Open Source PBX System"
HOMEPAGE="http://www.asterisk.org/"
SRC_URI="http://downloads.asterisk.org/pub/telephony/asterisk/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ais alsa bluetooth calendar +caps curl dahdi debug doc freetds gtalk h323 http iconv jabber jingle ldap logrotate lua keepsrc misdn mysql newt +samples odbc osplookup oss portaudio postgres radius snmp span speex ssl sqlite sqlite3 srtp static syslog usb vorbis"
RDEPEND="sys-libs/ncurses
dev-libs/popt
sys-libs/zlib
dev-libs/libxml2
ais? ( sys-cluster/openais )
alsa? ( media-libs/alsa-lib )
bluetooth? ( net-wireless/bluez )
calendar? ( net-libs/neon
dev-libs/libical
dev-libs/iksemel )
caps? ( sys-libs/libcap )
curl? ( net-misc/curl )
dahdi? ( >=net-libs/libpri-1.4.12_beta2
net-misc/dahdi-tools )
freetds? ( dev-db/freetds )
gtalk? ( dev-libs/iksemel )
h323? ( net-libs/openh323 )
http? ( dev-libs/gmime:0 )
iconv? ( virtual/libiconv )
jabber? ( dev-libs/iksemel )
jingle? ( dev-libs/iksemel )
ldap? ( net-nds/openldap )
lua? ( dev-lang/lua )
misdn? ( net-dialup/misdnuser )
mysql? ( dev-db/mysql )
newt? ( dev-libs/newt )
odbc? ( dev-db/unixODBC )
osplookup? ( net-libs/osptoolkit
dev-libs/openssl )
portaudio? ( media-libs/portaudio )
postgres? ( dev-db/postgresql-base )
radius? ( net-dialup/radiusclient-ng )
snmp? ( net-analyzer/net-snmp )
span? ( media-libs/spandsp )
speex? ( media-libs/speex )
sqlite? ( dev-db/sqlite:0 )
sqlite3? ( dev-db/sqlite:3 )
srtp? ( net-libs/libsrtp )
ssl? ( dev-libs/openssl )
syslog? ( app-admin/syslog-ng )
usb? ( dev-libs/libusb
media-libs/alsa-lib )
vorbis? ( media-libs/libvorbis )"
DEPEND="${RDEPEND}
!<net-misc/asterisk-addons-1.6
!net-misc/asterisk-chan_unistim
!net-misc/zaptel"
PDEPEND="net-misc/asterisk-core-sounds
net-misc/asterisk-extra-sounds
net-misc/asterisk-moh-opsound"
S="${WORKDIR}/${MY_P}"
PATCHES=(
"${FILESDIR}/1.8.0/${P}-gsm-pic.patch"
"${FILESDIR}/1.8.0/${P}-pri-missing-keyword.patch"
"${FILESDIR}/1.8.0/${P}-inband-indications.patch"
"${FILESDIR}/1.8.0/${P}-uclibc.patch"
"${FILESDIR}/1.8.0/${P}-iax2-peerstate.patch"
"${FILESDIR}/1.8.0/${P}-dahdiras-without-root.patch"
"${FILESDIR}/1.8.0/${P}-pbxstart-failed-spurious-bye.patch"
"${FILESDIR}/1.8.0/${P}-confbridge-menu-invocation.patch"
"${FILESDIR}/1.8.0/${P}-alarm-receiver-use-playtones.patch"
)
pkg_setup() {
CONFIG_CHECK="~!NF_CONNTRACK_SIP"
local WARNING_NF_CONNTRACK_SIP="SIP (NAT) connection tracking is enabled. Some users
have reported that this module dropped critical SIP packets in their deployments. You
may want to disable it if you see such problems."
check_extra_config
}
src_prepare() {
base_src_prepare
AT_M4DIR=autoconf eautoreconf
}
src_configure() {
econf \
--libdir="/usr/$(get_libdir)" \
--localstatedir="/var" \
--with-gsm=internal \
--with-popt \
--with-z \
$(use_with ais openais) \
$(use_with alsa asound) \
$(use_with bluetooth) \
$(use_with calendar neon) \
$(use_with calendar neon29) \
$(use_with calendar ical) \
$(use_with calendar iksemel) \
$(use_with caps cap) \
$(use_with curl libcurl) \
$(use_with dahdi pri) \
$(use_with dahdi tonezone) \
$(use_with dahdi) \
$(use_with freetds tds) \
$(use_with h323) \
$(use_with http gmime) \
$(use_with iconv) \
$(use_with jabber iksemel) \
$(use_with jingle iksemel) \
$(use_with lua) \
$(use_with misdn isdnnet) \
$(use_with misdn suppserv) \
$(use_with misdn) \
$(use_with mysql mysqlclient) \
$(use_with newt) \
$(use_with osplookup osptk) \
$(use_with oss) \
$(use_with portaudio) \
$(use_with postgres) \
$(use_with radius) \
$(use_with snmp netsnmp) \
$(use_with span spandsp) \
$(use_with speex) \
$(use_with speex speexdsp) \
$(use_with sqlite) \
$(use_with sqlite3) \
$(use_with srtp) \
$(use_with ssl crypto) \
$(use_with ssl) \
$(use_with usb) \
$(use_with vorbis ogg) \
$(use_with vorbis) || die "econf failed"
#
# blank out sounds/sounds.xml file to prevent
# asterisk from installing sounds files (we pull them in via
# asterisk-{core,extra}-sounds and asterisk-moh-opsound.
#
>"${S}"/sounds/sounds.xml
}
src_compile() {
ASTLDFLAGS="${LDFLAGS}" emake || die "emake failed"
}
src_install() {
# setup directory structure
#
mkdir -p "${D}"usr/$(get_libdir)/pkgconfig
emake DESTDIR="${D}" install || die "emake install failed"
if use samples; then
emake DESTDIR="${D}" samples || die "emake samples failed"
for conffile in "${D}"etc/asterisk/*.*
do
chown asterisk:asterisk $conffile
chmod 0660 $conffile
done
einfo "Sample files have been installed"
else
einfo "Skipping installation of sample files..."
rm -f "${D}"var/lib/asterisk/mohmp3/*
rm -f "${D}"var/lib/asterisk/sounds/demo-*
rm -f "${D}"var/lib/asterisk/agi-bin/*
rm -f "${D}"etc/asterisk/*
fi
rm -rf "${D}"var/spool/asterisk/voicemail/default
# keep directories
diropts -m 0770 -o asterisk -g asterisk
keepdir /etc/asterisk
keepdir /var/lib/asterisk
keepdir /var/run/asterisk
keepdir /var/spool/asterisk
keepdir /var/spool/asterisk/{system,tmp,meetme,monitor,dictate,voicemail}
diropts -m 0750 -o asterisk -g asterisk
keepdir /var/log/asterisk/{cdr-csv,cdr-custom}
newinitd "${FILESDIR}"/1.6.2/asterisk.initd2 asterisk
newconfd "${FILESDIR}"/1.6.0/asterisk.confd asterisk
# some people like to keep the sources around for custom patching
# copy the whole source tree to /usr/src/asterisk-${PVF} and run make clean there
if use keepsrc
then
dodir /usr/src
ebegin "Copying sources into /usr/src"
cp -dPR "${S}" "${D}"/usr/src/${PF} || die "Unable to copy sources"
eend $?
ebegin "Cleaning source tree"
emake -C "${D}"/usr/src/${PF} clean &>/dev/null || die "Unable to clean sources"
eend $?
einfo "Clean sources are available in "${ROOT}"usr/src/${PF}"
fi
# install the upgrade documentation
#
dodoc README UPGRADE* BUGS CREDITS
# install extra documentation
#
if use doc
then
dodoc doc/*.txt
dodoc doc/*.pdf
dodoc doc/PEERING
dodoc doc/CODING-GUIDELINES
dodoc doc/tex/*.pdf
fi
# install snmp mib files
#
if use snmp
then
insinto /usr/share/snmp/mibs/
doins doc/digium-mib.txt doc/asterisk-mib.txt
fi
# install SIP scripts; bug #300832
#
dodoc "${FILESDIR}/1.6.2/sip_calc_auth"
dodoc "${FILESDIR}/1.6.2/find_call_sip_trace.sh"
dodoc "${FILESDIR}/1.6.2/find_call_ids.sh"
dodoc "${FILESDIR}/1.6.2/call_data.txt"
# install logrotate snippet; bug #329281
#
if use logrotate
then
insinto /etc/logrotate.d
newins "${FILESDIR}/1.6.2/asterisk.logrotate3" asterisk
fi
}
pkg_preinst() {
enewgroup asterisk
enewuser asterisk -1 -1 /var/lib/asterisk "asterisk,dialout"
}
pkg_postinst() {
#
# Announcements, warnings, reminders...
#
einfo "Asterisk has been installed"
echo
elog "If you want to know more about asterisk, visit these sites:"
elog "http://www.asteriskdocs.org/"
elog "http://www.voip-info.org/wiki-Asterisk"
echo
elog "http://www.automated.it/guidetoasterisk.htm"
echo
elog "Gentoo VoIP IRC Channel:"
elog "#gentoo-voip @ irc.freenode.net"
echo
echo
elog "1.6 -> 1.8 changes that you may care about:"
elog "http://svn.asterisk.org/svn/${PN}/tags/${PV}/UPGRADE.txt"
elog "or: bzless ${ROOT}usr/share/doc/${PF}/UPGRADE.txt.bz2"
}
pkg_config() {
einfo "Do you want to reset file permissions and ownerships (y/N)?"
read tmp
tmp="$(echo $tmp | tr '[:upper:]' '[:lower:]')"
if [[ "$tmp" = "y" ]] ||\
[[ "$tmp" = "yes" ]]
then
einfo "Resetting permissions to defaults..."
for x in spool run lib log; do
chown -R asterisk:asterisk "${ROOT}"var/${x}/asterisk
chmod -R u=rwX,g=rwX,o= "${ROOT}"var/${x}/asterisk
done
chown -R root:asterisk "${ROOT}"etc/asterisk
chmod -R u=rwX,g=rwX,o= "${ROOT}"etc/asterisk
einfo "done"
else
einfo "skipping"
fi
}
|