diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2014-03-03 00:26:20 +0000 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2014-03-03 00:26:20 +0000 |
commit | 3588fd3b42bba8dc4b4fd60dee5151c0cc83d013 (patch) | |
tree | 9726a7fed8f1a6079a934fbdd6617355d80c5fd6 /sys-auth/nss_ldap | |
parent | Version bump to fix bug #502378, take over as maintainer. (diff) | |
download | gentoo-2-3588fd3b42bba8dc4b4fd60dee5151c0cc83d013.tar.gz gentoo-2-3588fd3b42bba8dc4b4fd60dee5151c0cc83d013.tar.bz2 gentoo-2-3588fd3b42bba8dc4b4fd60dee5151c0cc83d013.zip |
final fix for bug 465954
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
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 |