diff options
author | recht <recht> | 2005-01-23 20:41:45 +0000 |
---|---|---|
committer | recht <recht> | 2005-01-23 20:41:45 +0000 |
commit | afb6c634cf36bd0b8ca88bdb63f886e1d081aada (patch) | |
tree | c91b08fba110acac23e0418c231e8fe8945c54ed /databases/py-ldap | |
parent | 9568d9551aa2d892a0210cdea493eaeabbe1d6ef (diff) | |
download | pkgsrc-afb6c634cf36bd0b8ca88bdb63f886e1d081aada.tar.gz |
Build Python with thread support by default and turn the existing
python*-pth packages into meta-packages which will install the non-pth
packages. Bump PKGREVISIONs on the non-pth versions to propagate the
thread change, but leave the *-pth versions untouched to not affect
existing installations.
Sync all PYTHON_VERSIONS_AFFECTED lines in package Makefiles.
Diffstat (limited to 'databases/py-ldap')
-rw-r--r-- | databases/py-ldap/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/databases/py-ldap/Makefile b/databases/py-ldap/Makefile index 37972ec3424..deff89dd4af 100644 --- a/databases/py-ldap/Makefile +++ b/databases/py-ldap/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2004/12/03 13:55:48 wiz Exp $ +# $NetBSD: Makefile,v 1.20 2005/01/23 20:41:45 recht Exp $ DISTNAME= python-ldap-2.0.2 PKGNAME= ${DISTNAME:S/python/${PYPKGPREFIX}/} @@ -10,7 +10,7 @@ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://sourceforge.net/projects/python-ldap/ COMMENT= LDAP client API for Python -PYTHON_VERSIONS_ACCEPTED= 21pth 22pth 23pth +PYTHON_VERSIONS_ACCEPTED= 21 22 23 PYDISTUTILSPKG= yes USE_BUILDLINK3= yes @@ -24,8 +24,8 @@ SUBST_SED.setup= -e "s|/usr/local/openldap-REL_ENG_2_1|${BUILDLINK_PREFIX.cyrus .include "../../security/cyrus-sasl2/buildlink3.mk" .include "../../lang/python/extension.mk" -.if defined(PTHREAD_TYPE) && ${PTHREAD_TYPE} == "pth" -SUBST_SED.setup+= -e "s|crypto|& pthread|" +.if defined(PTHREAD_TYPE) && ${PTHREAD_TYPE} == "" +SUBST_SED.setup+= -e "s|crypto|& read|" .endif .include "../../mk/bsd.pkg.mk" |