diff options
author | Bruce A. Locke <blocke@gentoo.org> | 2002-04-04 02:43:30 +0000 |
---|---|---|
committer | Bruce A. Locke <blocke@gentoo.org> | 2002-04-04 02:43:30 +0000 |
commit | ecf98632d4e1cd335815d9fdc50e09756d989aaf (patch) | |
tree | 180ba118ab22b5149073641c3d62268764e9e312 /dev-python | |
parent | even more bugfixes (diff) | |
download | gentoo-2-ecf98632d4e1cd335815d9fdc50e09756d989aaf.tar.gz gentoo-2-ecf98632d4e1cd335815d9fdc50e09756d989aaf.tar.bz2 gentoo-2-ecf98632d4e1cd335815d9fdc50e09756d989aaf.zip |
Initial Version
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/python-ldap/ChangeLog | 11 | ||||
-rw-r--r-- | dev-python/python-ldap/files/digest-python-ldap-2.0.0_pre04 | 1 | ||||
-rw-r--r-- | dev-python/python-ldap/python-ldap-2.0.0_pre04.ebuild | 33 |
3 files changed, 45 insertions, 0 deletions
diff --git a/dev-python/python-ldap/ChangeLog b/dev-python/python-ldap/ChangeLog new file mode 100644 index 000000000000..e61ea6546750 --- /dev/null +++ b/dev-python/python-ldap/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for dev-python/python-ldap +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/ChangeLog,v 1.1 2002/04/04 02:43:30 blocke Exp $ + +*python-ldap-2.0.0pre04 (3 Apr 2002) + + 3 Apr 2002; Bruce A. Locke <blocke@shivan.org> python-ldap-2.0.0pre04.ebuild : + + Initial Version + + diff --git a/dev-python/python-ldap/files/digest-python-ldap-2.0.0_pre04 b/dev-python/python-ldap/files/digest-python-ldap-2.0.0_pre04 new file mode 100644 index 000000000000..4109572d8c39 --- /dev/null +++ b/dev-python/python-ldap/files/digest-python-ldap-2.0.0_pre04 @@ -0,0 +1 @@ +MD5 4c0f4e6f59b41a02f50493f02012c9ac python-ldap-2.0.0pre04.tar.gz 44155 diff --git a/dev-python/python-ldap/python-ldap-2.0.0_pre04.ebuild b/dev-python/python-ldap/python-ldap-2.0.0_pre04.ebuild new file mode 100644 index 000000000000..568785f30c31 --- /dev/null +++ b/dev-python/python-ldap/python-ldap-2.0.0_pre04.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Bruce A. Locke <blocke@shivan.org> +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.0.0_pre04.ebuild,v 1.1 2002/04/04 02:43:30 blocke Exp $ + +VERSION="2.0.0pre04" +S=${WORKDIR}/${PN}-${VERSION} +DESCRIPTION="Various LDAP-related Python modules" +SRC_URI="http://prdownloads.sourceforge.net/python-ldap/python-ldap-${VERSION}.tar.gz" +HOMEPAGE="http://python-ldap.sourceforge.net/" + +DEPEND=">=dev-lang/python-2.2 + >=net-nds/openldap-2.0.11" + +src_compile() { + + mv setup.cfg setup.cfg.orig + sed "s|/usr/local/openldap2/lib|/usr/lib|" setup.cfg.orig | \ + sed "s|/usr/local/openldap2/include|/usr/include|" > setup.cfg \ + || die + + python setup.py build || die + +} + +src_install() { + + python setup.py install --prefix=${D}/usr || die + + dodoc README + +} + |