blob: ffe004793028f220bb93c87289d82703e03ef6f8 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_ldap/mod_auth_ldap-2.4.2-r1.ebuild,v 1.2 2005/11/01 19:27:31 dertobi123 Exp $
inherit eutils apache-module
DESCRIPTION="Apache module for LDAP authorization"
HOMEPAGE="http://www.muquit.com/muquit/software/mod_auth_ldap/mod_auth_ldap.html"
KEYWORDS="ppc ~sparc ~x86"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="as-is"
SLOT="0"
IUSE=""
DEPEND=">=net-nds/openldap-2.0.25"
RDEPEND=""
APXS1_ARGS="-lresolv -lldap -llber -c ${PN}.c"
APACHE1_MOD_FILE="${PN}.so"
APACHE1_MOD_CONF="55_${PN}"
APACHE1_MOD_DEFINE="AUTH_LDAP"
DOCFILES="README mod_auth_ldap.html"
need_apache1
src_unpack() {
unpack ${A} || die "unpack failed"
cd ${S} || die "cd failed"
epatch ${FILESDIR}/${P}-register.patch || die "patch failed"
}
|