blob: cebf67eb741b097e262e50d6ea6c4f519e421a1d (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-app_authenticate_ldap/asterisk-app_authenticate_ldap-0.1.3.ebuild,v 1.2 2006/04/17 18:59:21 stkn Exp $
inherit eutils
MY_PN="app_authenticate_ldap"
DESCRIPTION="Asterisk application plugin for authentication using LDAP"
HOMEPAGE="http://www.ionidea.ua/oss/asterisk/"
SRC_URI="http://www.ionidea.ua/oss/asterisk/${MY_PN}-${PV}.tar.gz"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
# depends on iconv support
DEPEND="sys-libs/glibc
>=net-misc/asterisk-1.2.0
!=net-misc/asterisk-1.0*
net-misc/asterisk-app_ldap"
S=${WORKDIR}/apps
src_unpack() {
unpack ${A}
cd ${S}
# use asterisk-config...
epatch ${FILESDIR}/${MY_PN}-0.1.3-astcfg.diff
# fix include order for asterisk-1.2.x
epatch ${FILESDIR}/${MY_PN}-0.1.3-include.diff
}
src_compile() {
emake -j1 || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die
dodoc README.Authenticate_LDAP
}
|