summaryrefslogtreecommitdiff
blob: f5cf96797a856ae397fa07961bce8f91f46f1c3c (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
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-chan_capi/asterisk-chan_capi-0.4.0_pre1.ebuild,v 1.5 2007/01/06 16:50:51 drizzt Exp $

IUSE=""

inherit eutils

MY_P="chan_capi-${PV/_pre/-PRE}"

DESCRIPTION="CAPI2.0 channel module for Asterisk"
HOMEPAGE="http://www.junghanns.net/asterisk/"
SRC_URI="http://www.junghanns.net/asterisk/downloads/${MY_P}.tar.gz"
#	 fax? ( http://mlkj.net/asterisk/${MY_P}-patch.tar.bz2 )"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"

DEPEND=">=net-misc/asterisk-1.0.5-r1
	!>=net-misc/asterisk-1.1.0
	net-dialup/capi4k-utils"

S="${WORKDIR}"/${MY_P}

src_unpack() {
	unpack ${A}

	cd "${S}"
	epatch "${FILESDIR}"/chan_capi-0.3.5-gentoo.diff
	epatch "${FILESDIR}"/chan_capi-${PV}-fixstable.diff

	# compile for asterisk-stable
	sed -i -e "s:^\(CFLAGS+=-DCVS_HEAD\):#\1:" \
		Makefile

#	if use fax; then
#		einfo "Enabling fax support"
#		epatch "${WORKDIR}"/chan_capi.diff
#		cp "${WORKDIR}"/app_capiFax.c "${S}"
#	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
}

pkg_postinst() {
	elog "Please don't forget to enable chan_capi in your /etc/asterisk/modules.conf:"
	echo
	elog "load => chan_capi.so"
	echo
	elog "and in the global section:"
	elog "chan_capi.so=yes"
	echo
	elog "(see /usr/share/doc/${PF} for more information)"
}