openbsd-ports/databases/py-ldap/Makefile
jasper 20696471fe remove marc balmer as maintainer of all of his ports, to take away the
illusion marc still maintains them. as requested by himself.
2009-09-15 17:37:21 +00:00

57 lines
1.4 KiB
Makefile

# $OpenBSD: Makefile,v 1.20 2009/09/15 17:37:21 jasper Exp $
SHARED_ONLY= Yes
COMMENT-main= LDAP client API for Python
COMMENT-examples= example programs for the LDAP client API for Python
V= 2.3.1
DISTNAME= python-ldap-${V}
PKGNAME-main= py-ldap-${V}p2
FULLPKGNAME-examples= py-ldap-examples-${V}p1
CATEGORIES= databases
HOMEPAGE= http://python-ldap.sourceforge.net/
# Python
PERMIT_PACKAGE_FTP= Yes
PERMIT_PACKAGE_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
WANTLIB-main= crypto ssl
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=python-ldap/}
MODULES= lang/python
MODPY_VERSION= ${FLAVOR:S/python//}
LIB_DEPENDS-main= ldap_r.>=7,lber.>=7::databases/openldap \
sasl2.>=2::security/cyrus-sasl2
FLAVORS= python2.4 python2.5
FLAVOR?= python2.5
.if ${FLAVOR:L:Mpython2.4} && !${FLAVOR:L:Npython2.4}
MULTI_PACKAGES= -main
.elif ${FLAVOR:L:Mpython2.5} && !${FLAVOR:L:Npython2.5}
MULTI_PACKAGES= -main -examples
.else
ERRORS+= "Fatal: You must select one version: ${FLAVORS}"
.endif
EXAMPLESDIR= ${PREFIX}/share/examples/py-ldap
post-install:
${INSTALL_DATA_DIR} ${EXAMPLESDIR}
cd ${WRKSRC}; tar cf - Demo | tar xf - -C ${EXAMPLESDIR}
find ${WRKINST} -name \*.egg-info -exec rm {} \;
do-regress: fake
@cd ${WRKSRC}/Tests/Lib && ${MAKE_ENV} \
PYTHONPATH=${WRKINST}${MODPY_SITEPKG} \
${MODPY_BIN} ./test_ldapurl.py
.include <bsd.port.mk>