openbsd-ports/databases/py-ldap/Makefile
espie 2314c85f45 convert to new style depends
zap default spec that are not needed
convert libspecs as well
convert p* to REVISION.

No package changes
2010-11-15 00:22:45 +00:00

61 lines
1.5 KiB
Makefile

# $OpenBSD: Makefile,v 1.25 2010/11/15 00:22:53 espie 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}
REVISION-main = 4
FULLPKGNAME-examples= py-ldap-examples-${V}
REVISION-examples = 3
FULLPKGPATH-examples= databases/py-ldap,-examples
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= databases/openldap \
security/cyrus-sasl2
WANTLIB-main += ldap_r>=7 lber>=7 sasl2>=2
FLAVORS= python2.4 python2.6
FLAVOR?= python2.6
.if ${FLAVOR:L:Mpython2.4} && !${FLAVOR:L:Npython2.4}
MULTI_PACKAGES= -main
.elif ${FLAVOR:L:Mpython2.6} && !${FLAVOR:L:Npython2.6}
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>