When trying to emerge net-libs/nss_ldap-174, there is a sandbox access violation on the install step. Here is a patch to the net-libs/nss_ldap/nss_ldap-174.ebuild script to fix this issue: --- nss_ldap-174.ebuild Sun Dec 2 13:54:54 2001 +++ ../../backup/nss_ldap-174.ebuild Thu Apr 18 11:22:58 2002 @@ -28,15 +28,9 @@ src_install() { - mkdir ${D}/usr - mkdir ${D}/usr/lib + install -d ${D}/usr/lib - make prefix=${D}/usr \ - mandir=${D}/usr/share/man \ - infodir=${D}/usr/share/info \ - sysconfdir=${D}/etc \ - localstatedir=${D}/var/lib \ - install || die + make DESTDIR=${D} install || die rm ${D}/etc/ldap.conf ln -s /etc/openldap/ldap.conf ${D}/etc/ldap.conf
a perfect fix -- nice and concise :) thanks a lot for this.