diff options
author | 2013-06-27 14:29:10 +0000 | |
---|---|---|
committer | 2013-06-27 14:29:10 +0000 | |
commit | ee62a2bcf708d5e24bb8fdde2b73c4ec29b01abb (patch) | |
tree | 25fcd7e4d07b01623df885e6b85b793a26e2c457 /dev-python/python-ldap/python-ldap-2.3.13.ebuild | |
parent | version bump (diff) | |
download | gentoo-2-ee62a2bcf708d5e24bb8fdde2b73c4ec29b01abb.tar.gz gentoo-2-ee62a2bcf708d5e24bb8fdde2b73c4ec29b01abb.tar.bz2 gentoo-2-ee62a2bcf708d5e24bb8fdde2b73c4ec29b01abb.zip |
Add myself as maintainer, add live ebuild for python3 fork, fix unquited variables, remove two old, unstable versions.
(Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
Diffstat (limited to 'dev-python/python-ldap/python-ldap-2.3.13.ebuild')
-rw-r--r-- | dev-python/python-ldap/python-ldap-2.3.13.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-python/python-ldap/python-ldap-2.3.13.ebuild b/dev-python/python-ldap/python-ldap-2.3.13.ebuild index 5c0450ed50c2..bcb3b624c354 100644 --- a/dev-python/python-ldap/python-ldap-2.3.13.ebuild +++ b/dev-python/python-ldap/python-ldap-2.3.13.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 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.3.13.ebuild,v 1.14 2012/11/14 08:17:33 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.3.13.ebuild,v 1.15 2013/06/27 14:29:10 xmw Exp $ EAPI="3" PYTHON_DEPEND="2" @@ -34,10 +34,10 @@ PYTHON_MODNAME="dsml.py ldapurl.py ldif.py ldap" src_prepare() { local rpath= # sloppy logic, maybe better check if compiler links with GNU-ld - [[ ${CHOST} != *-darwin* ]] && rpath="-Wl,-rpath=${EPREFIX}/usr/$(get_libdir)/sasl2" + [[ ${CHOST} != *-darwin* ]] && rpath="-Wl,-rpath=\"${EPREFIX}\"/usr/$(get_libdir)/sasl2" # Note: we can't add /usr/lib and /usr/lib/sasl2 to library_dirs due to a bug in py2.4 sed -e "s:^library_dirs =.*:library_dirs =:" \ - -e "s:^include_dirs =.*:include_dirs = ${EPREFIX}/usr/include ${EPREFIX}/usr/include/sasl:" \ + -e "s:^include_dirs =.*:include_dirs = \"${EPREFIX}\"/usr/include \"${EPREFIX}\"/usr/include/sasl:" \ -e "s:\(extra_compile_args =\).*:\1\nextra_link_args = ${rpath}:" \ -i setup.cfg || die "error fixing setup.cfg" |