diff options
Diffstat (limited to 'dev-python/python-ldap/python-ldap-2.0.1.ebuild')
-rw-r--r-- | dev-python/python-ldap/python-ldap-2.0.1.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-python/python-ldap/python-ldap-2.0.1.ebuild b/dev-python/python-ldap/python-ldap-2.0.1.ebuild deleted file mode 100644 index 09c39bfd0297..000000000000 --- a/dev-python/python-ldap/python-ldap-2.0.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.0.1.ebuild,v 1.6 2005/01/03 15:53:48 gustavoz Exp $ - -inherit distutils - -IUSE="sasl ssl" -#MY_P=${P/_pre/pre} -#S=${WORKDIR}/${MY_P} -DESCRIPTION="Various LDAP-related Python modules" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -HOMEPAGE="http://python-ldap.sourceforge.net/" - -DEPEND="virtual/python - >=net-nds/openldap-2.0.11 - sasl? ( dev-libs/cyrus-sasl )" - -SLOT="0" -LICENSE="PYTHON" -KEYWORDS="x86 sparc alpha ppc" - -PYTHON_MODNAME="ldap" - -src_unpack() { - unpack ${A} - cd ${S} - sed -e "s|/usr/local/openldap.*/lib|/usr/lib|" \ - -e "s|/usr/local/openldap.*/include|/usr/include|" \ - -i setup.cfg || die "error fixing setup.cfg" - - local mylibs - use sasl \ - && mylibs="${mylibs} sasl2 ldap" \ - || mylibs="${mylibs} ldap" - - # Fixes bug #25693 - sed -e "s|<sasl.h>|<sasl/sasl.h>|" -i Modules/LDAPObject.c - - use ssl && mylibs="${mylibs} ssl crypto" - sed -e "s|^libs = .*|libs = lber resolv ${mylibs}|" \ - -e "s|^compile.*|compile = 0|" \ - -e "s|^optimize.*|optimize = 0|" \ - -i setup.cfg || die "error setting up libs in setup.cfg" -} |