blob: c9f4e88f2d27cfdb39784349c303f780c361353c (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-app_conference/asterisk-app_conference-0.0.1_pre20050506.ebuild,v 1.6 2010/10/28 10:27:37 ssuominen Exp $
inherit eutils
MY_PN="app_conference"
MY_P="${MY_PN}-${PV/0.0.1_pre/}"
DESCRIPTION="Asterisk application plugin for conferences"
HOMEPAGE="http://iaxclient.sourceforge.net/"
SRC_URI="mirror://gentoo/${MY_PN}-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
# depends on glibc's iconv support
DEPEND=">=net-misc/asterisk-1.0.5-r1
!>=net-misc/asterisk-1.2.0"
S=${WORKDIR}/${MY_PN}
src_unpack() {
unpack ${A}
cd "${S}"
# use asterisk-config...
epatch "${FILESDIR}"/${MY_P}-astcfg.diff
# compile fixes for asterisk-stable
epatch "${FILESDIR}"/${MY_P}-compile.patch
}
src_compile() {
emake -j1 || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die
dodoc README
}
|