blob: 0a8a963c2356d0c9c245c56552af0e2f43702d84 (
plain)
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-chan_unistim/asterisk-chan_unistim-0.9.2.ebuild,v 1.5 2006/05/06 15:03:52 stkn Exp $
inherit eutils
MY_PN="chan_unistim"
DESCRIPTION="Unistim channel module for Asterisk"
HOMEPAGE="http://mlkj.net/UNISTIM/"
SRC_URI="http://mlkj.net/asterisk/${MY_PN}-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE=""
DEPEND=">=net-misc/asterisk-1.0.5-r1
!>=net-misc/asterisk-1.2.0"
S=${WORKDIR}/${MY_PN}-${PV}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${MY_PN}-${PV}-gentoo.diff
}
src_compile() {
emake || die "emake failed"
}
src_install() {
make INSTALL_PREFIX=${D} install config || die "make install failed"
dodoc README unistim.conf
# fix permissions
if [[ -n "$(egetent group asterisk)" ]]; then
einfo "Fixing permissions..."
chown -R root:asterisk ${D}etc/asterisk
chmod -R u=rwX,g=rX,o= ${D}etc/asterisk
fi
}
pkg_postinst() {
einfo "For more information about this module:"
einfo ""
einfo "http://www.voip-info.org/wiki-Asterisk+UNISTIM+channels"
einfo ""
einfo "http://www.voip-info.org/wiki-Nortel+Phones"
}
|