diff options
Diffstat (limited to 'sys-auth/nss_ldap')
-rw-r--r-- | sys-auth/nss_ldap/ChangeLog | 8 | ||||
-rw-r--r-- | sys-auth/nss_ldap/nss_ldap-265-r4.ebuild (renamed from sys-auth/nss_ldap/nss_ldap-265-r3.ebuild) | 10 |
2 files changed, 14 insertions, 4 deletions
diff --git a/sys-auth/nss_ldap/ChangeLog b/sys-auth/nss_ldap/ChangeLog index 5186109727f9..f6f4ec05a357 100644 --- a/sys-auth/nss_ldap/ChangeLog +++ b/sys-auth/nss_ldap/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-auth/nss_ldap # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.84 2014/02/17 05:41:10 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.85 2014/03/03 00:26:20 prometheanfire Exp $ + +*nss_ldap-265-r4 (03 Mar 2014) + + 03 Mar 2014; Matthew Thode <prometheanfire@gentoo.org> + +nss_ldap-265-r4.ebuild, -nss_ldap-265-r3.ebuild: + final fix for bug 465954 *nss_ldap-265-r3 (17 Feb 2014) diff --git a/sys-auth/nss_ldap/nss_ldap-265-r3.ebuild b/sys-auth/nss_ldap/nss_ldap-265-r4.ebuild index 7c3ceace8003..2807a5a56376 100644 --- a/sys-auth/nss_ldap/nss_ldap-265-r3.ebuild +++ b/sys-auth/nss_ldap/nss_ldap-265-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r3.ebuild,v 1.1 2014/02/17 05:41:10 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r4.ebuild,v 1.1 2014/03/03 00:26:20 prometheanfire Exp $ EAPI=5 inherit fixheadtails eutils multilib autotools prefix @@ -114,8 +114,12 @@ src_configure() { src_install() { dodir /$(get_libdir) - emake -j1 DESTDIR="${D}" install \ - INST_UID=${PORTAGE_USER:-root} INST_GID=${PORTAGE_GROUP:-root} + if use kernel_FreeBSD; then + emake -j1 DESTDIR="${D}" install || die "make install failed" + else + emake -j1 DESTDIR="${D}" install \ + INST_UID=${PORTAGE_USER:-root} INST_GID=${PORTAGE_GROUP:-root} + fi insinto /etc doins ldap.conf |