blob: 71a43977d21b147281b6bc1641691fc3956af5c4 (
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
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-chan_capi-cm/asterisk-chan_capi-cm-0.5.3.ebuild,v 1.3 2005/08/16 16:27:31 stkn Exp $
IUSE=""
inherit eutils
MY_P="chan_capi-cm-${PV}"
DESCRIPTION="Alternative CAPI2.0 channel module for Asterisk"
HOMEPAGE="http://sourceforge.net/projects/chan-capi"
SRC_URI="mirror://sourceforge/chan-capi/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
DEPEND="!net-misc/asterisk-chan_capi
>=net-misc/asterisk-1.0.5-r2
net-dialup/capi4k-utils"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/chan_capi-0.3.5-gentoo.diff
if has_version "<net-misc/asterisk-1.1.0"; then
einfo "Building for asterisk-1.0.x"
# compile for asterisk-stable
sed -i -e "s:^\(CFLAGS+=-DCVS_HEAD\):#\1:" \
Makefile
else
einfo "Building for asterisk-1.2.x"
fi
}
src_compile() {
emake || die "emake failed"
}
src_install() {
make INSTALL_PREFIX=${D} install config || die "make install failed"
dodoc INSTALL LICENSE README capi.conf
# fix permissions
if [[ -n "$(egetent group asterisk)" ]]; then
chown -R root:asterisk ${D}/etc/asterisk/capi.conf
chmod -R u=rwX,g=rX,o= ${D}/etc/asterisk/capi.conf
fi
}
pkg_postinst() {
einfo "Please don't forget to enable chan_capi in your /etc/asterisk/modules.conf:"
einfo ""
einfo "load => chan_capi.so"
einfo ""
einfo "and in the [global] section:"
einfo "chan_capi.so=yes"
einfo ""
einfo "(see /usr/share/doc/${PF} for more information)"
}
|