diff options
author | Benda XU <heroxbd@gentoo.org> | 2013-06-20 03:34:13 +0000 |
---|---|---|
committer | Benda XU <heroxbd@gentoo.org> | 2013-06-20 03:34:13 +0000 |
commit | 025b5982a1a6af3ded4c07b2b7d3bf4e262d0036 (patch) | |
tree | f7d1a42f53d46f5fc95d1ff048cf7cbe55cf105d /sys-auth/nss_ldap | |
parent | Bump (diff) | |
download | gentoo-2-025b5982a1a6af3ded4c07b2b7d3bf4e262d0036.tar.gz gentoo-2-025b5982a1a6af3ded4c07b2b7d3bf4e262d0036.tar.bz2 gentoo-2-025b5982a1a6af3ded4c07b2b7d3bf4e262d0036.zip |
default var PORTAGE_{USER,GROUP} to root, as they are only defined in Prefix. closing bug 473776. Thanks to Spooky Ghost and Bernd Feige.
(Portage version: 2.1.12.4/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'sys-auth/nss_ldap')
-rw-r--r-- | sys-auth/nss_ldap/ChangeLog | 6 | ||||
-rw-r--r-- | sys-auth/nss_ldap/nss_ldap-265-r2.ebuild | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/sys-auth/nss_ldap/ChangeLog b/sys-auth/nss_ldap/ChangeLog index 78f6e6566e4a..a24c5adf8677 100644 --- a/sys-auth/nss_ldap/ChangeLog +++ b/sys-auth/nss_ldap/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-auth/nss_ldap # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.74 2013/06/18 05:31:29 heroxbd Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/ChangeLog,v 1.75 2013/06/20 03:34:13 heroxbd Exp $ + + 20 Jun 2013; Benda Xu <heroxbd@gentoo.org> nss_ldap-265-r2.ebuild: + default var PORTAGE_{USER,GROUP} to root, as they are only defined in Prefix. + closing bug 473776. Thanks to Spooky Ghost and Bernd Feige. *nss_ldap-265-r2 (18 Jun 2013) diff --git a/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild b/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild index 9fd9a8604e65..67eaf33a36e4 100644 --- a/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild +++ b/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 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-r2.ebuild,v 1.1 2013/06/18 05:31:29 heroxbd Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/nss_ldap/nss_ldap-265-r2.ebuild,v 1.2 2013/06/20 03:34:13 heroxbd Exp $ EAPI=5 inherit fixheadtails eutils multilib autotools prefix @@ -99,7 +99,8 @@ src_configure() { src_install() { dodir /$(get_libdir) - emake -j1 DESTDIR="${D}" install INST_UID=${PORTAGE_USER} INST_GID=${PORTAGE_GROUP} + emake -j1 DESTDIR="${D}" install \ + INST_UID=${PORTAGE_USER:-root} INST_GID=${PORTAGE_GROUP:-root} insinto /etc doins ldap.conf |