blob: d29c8caa948f6d8b6a1a6d47da97902374077647 (
plain) (
blame)
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
|
# $FreeBSD$
PORTNAME= ldap2
PORTVERSION= 2.4.10
CATEGORIES= net python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= python-ldap-${PORTVERSION}
MAINTAINER= rm@FreeBSD.org
COMMENT= An LDAP module for python, for OpenLDAP2
LICENSE= PSFL
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asn1-modules>=0:${PORTSDIR}/devel/py-asn1-modules
USE_PYTHON= -2.7
USE_PYDISTUTILS= easy_install
USE_OPENLDAP= yes
PYDISTUTILS_PKGNAME= python-ldap
PYEASYINSTALL_ARCHDEP= yes
WANT_OPENLDAP_VER= 24
REPLACE_ARGS= -e 's,/opt/openldap-RE24/lib,${LOCALBASE}/lib,' \
-e 's,/opt/openldap-RE24/include,${LOCALBASE}/include,' \
-e 's,/usr/include/sasl,${LOCALBASE}/include/sasl,'
.if defined(WITH_SASL)
WANT_OPENLDAP_SASL= yes
CONFLICTS+= openldap2[34]-client-2.*
.endif
pre-everything::
@${ECHO} "============================================================="
@${ECHO}
@${ECHO} "You can build ${PKGNAME} with the following options:"
@${ECHO}
@${ECHO} "WITH_SASL with (Cyrus) SASL2 support"
@${ECHO}
@${ECHO} "============================================================="
@${ECHO}
do-configure:
@${REINPLACE_CMD} ${REPLACE_ARGS} ${WRKSRC}/setup.cfg
.if !defined(WITH_SASL)
@cd ${WRKSRC} && ${PYTHON_CMD} setup.py -q setopt -c _ldap -s HAVE_TLS -o defines
@cd ${WRKSRC} && ${PYTHON_CMD} setup.py -q saveopts
.endif
.include <bsd.port.mk>
|