blob: e5772d2819001bfdaadcafa1f3d73b41bc4f3d50 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header:
PYTHON_SLOT_VERSION=2.1
inherit distutils
P_NEW="${PN%-py21}-${PV/_pre/pre}"
S=${WORKDIR}/${P_NEW}
DESCRIPTION="Various LDAP-related Python modules"
SRC_URI="mirror://sourceforge/python-ldap/${P_NEW}.tar.gz"
HOMEPAGE="http://python-ldap.sourceforge.net/"
DEPEND="${DEPEND}
>=net-nds/openldap-2.0.11"
SLOT="0"
LICENSE="PYTHON"
KEYWORDS="x86 ppc"
IUSE=""
src_compile() {
mv setup.cfg setup.cfg.orig
sed -e "s|/usr/local/openldap2/lib|/usr/lib|" \
-e "s|/usr/local/openldap2/include|/usr/include|" \
-e "s|libs = ldap lber|libs = ldap lber resolv|" \
setup.cfg.orig > setup.cfg || die
distutils_src_compile
}
|