commit:     57c9d84577f2a4953bd0289dc3032c3b4d67a10b
Author:     Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 15 14:39:47 2016 +0000
Commit:     Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Mon Aug 15 14:39:47 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57c9d845

sys-auth/nss-pam-ldapd: bup

Package-Manager: portage-2.2.28

 sys-auth/nss-pam-ldapd/Manifest                   |   1 +
 sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.7.ebuild | 129 ++++++++++++++++++++++
 2 files changed, 130 insertions(+)

diff --git a/sys-auth/nss-pam-ldapd/Manifest b/sys-auth/nss-pam-ldapd/Manifest
index 97885bb..6a6ae0c 100644
--- a/sys-auth/nss-pam-ldapd/Manifest
+++ b/sys-auth/nss-pam-ldapd/Manifest
@@ -1,2 +1,3 @@
 DIST nss-pam-ldapd-0.8.14.tar.gz 508949 SHA256 
a29ceb9b7eda386ca38f16115ffec61425462cca6b5e560c44c3d51edc03a63f SHA512 
70abb1836b5b3304e583fd3b71f11fee7586e181b26f4630779ec1d90b856da6e4fcc76327c51b20a158aa36708dd12ceb5f543a33c826881f2ad3e092f542c9
 WHIRLPOOL 
5d30088d73e464bf380dd5e7d34f8c5200680712693c97ee1f1df1880b4680236d9168ac7ec08b161ae463236c0feddc2171442a956c872113caa6e2b07a6bb8
 DIST nss-pam-ldapd-0.9.6.tar.gz 754681 SHA256 
101d5a7fa10549cc77be48d07f2b8141f59182f10f2cc0fea93efd13c3a5a6f2 SHA512 
213bc55554290042623ef4cce071045bab569a824aef7d960e3aa9c2f64f0c4928c5c28a4b5d9225fd35ea5026bb11f710d9c620f790e9d82c73d89b272e972a
 WHIRLPOOL 
8902d48a6e889e697f7ddf9bd7d481493a0e2e302223317647f24fd3cd10b176cf66287553b8eafc2b996d0c073055afeb42b4f29d93e8f05f3967bb0aeaee16
+DIST nss-pam-ldapd-0.9.7.tar.gz 762743 SHA256 
0db88d6518bf7ffb01b44f8f8841ece5162906982ce2c9e45e6afff90d3783eb SHA512 
2117262f41c4fc54987f9f663ed71126100420ecff391cc280e98d7864094db201a81a4ebf7e5634436982092be3c751971d8aee53e39c42a8572ab57b561284
 WHIRLPOOL 
be1a3a1a5a2eec6fe1e75f5fd40e741fd5dd013534c05898c0498090983632a17931bcf6d3f9e53f583a584d7e02b74c6844343e05617c61e03c0c92b792e044

diff --git a/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.7.ebuild 
b/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.7.ebuild
new file mode 100644
index 0000000..86a7857
--- /dev/null
+++ b/sys-auth/nss-pam-ldapd/nss-pam-ldapd-0.9.7.ebuild
@@ -0,0 +1,129 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=(python2_7)
+inherit eutils prefix user python-r1 multilib multilib-minimal systemd s6
+
+DESCRIPTION="NSS module for name lookups using LDAP"
+HOMEPAGE="http://arthurdejong.org/nss-pam-ldapd/";
+SRC_URI="http://arthurdejong.org/${PN}/${P}.tar.gz";
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS=""
+IUSE="debug kerberos +pam sasl test +utils"
+
+COMMON_DEP="
+       net-nds/openldap[${MULTILIB_USEDEP}]
+       sasl? ( dev-libs/cyrus-sasl[${MULTILIB_USEDEP}] )
+       kerberos? ( virtual/krb5[${MULTILIB_USEDEP}] )
+       pam? ( virtual/pam[${MULTILIB_USEDEP}] )
+       utils? ( ${PYTHON_DEPS} )
+       !sys-auth/nss_ldap
+       !sys-auth/pam_ldap"
+RDEPEND="${COMMON_DEP}"
+DEPEND="${COMMON_DEP}
+       test? (
+               ${PYTHON_DEPS}
+               dev-python/pylint[${PYTHON_USEDEP}]
+       )
+       sys-devel/automake"
+
+REQUIRED_USE="
+       utils? ( ${PYTHON_REQUIRED_USE} )
+       test? ( ${PYTHON_REQUIRED_USE} )"
+
+pkg_setup() {
+       enewgroup nslcd
+       enewuser nslcd -1 -1 -1 nslcd
+}
+
+src_prepare() {
+       epatch "${FILESDIR}"/${PN}-0.9.4-disable-py3-only-linters.patch
+       epatch_user
+       use utils && python_setup
+}
+
+multilib_src_configure() {
+       local -a myconf
+
+       myconf=(
+               --disable-utils
+               --enable-warnings
+               --with-ldap-lib=openldap
+               --with-ldap-conf-file=/etc/nslcd.conf
+               --with-nslcd-pidfile=/run/nslcd/nslcd.pid
+               --with-nslcd-socket=/run/nslcd/socket
+               $(usex x86-fbsd '--with-nss-flavour=' '--with-nss-flavour=' 
'freebsd' 'glibc')
+               $(use_enable debug)
+               $(use_enable kerberos)
+               $(use_enable pam)
+               $(use_enable sasl)
+       )
+
+       # nss libraries always go in /lib on Gentoo
+       if multilib_is_native_abi ; then
+               
myconf+=("--with-pam-seclib-dir=${EPREFIX}/$(get_libdir)/security")
+               myconf+=("--libdir=${EPREFIX}/$(get_libdir)")
+       else
+               myconf+=("--with-pam-seclib-dir=/$(get_libdir)/security")
+               myconf+=("--libdir=/$(get_libdir)")
+       fi
+
+       ECONF_SOURCE="${S}" econf "${myconf[@]}"
+}
+
+multilib_src_install_all() {
+       local script
+
+       newinitd "${FILESDIR}"/nslcd-init-r1 nslcd
+       newinitd "${FILESDIR}"/nslcd-init-r2 nslcd
+       newinitd "${FILESDIR}"/nslcd-init-s6 nslcd-s6
+       s6_install_service nslcd "${FILESDIR}"/nslcd-run-s6
+
+       insinto /usr/share/nss-pam-ldapd
+       doins "${WORKDIR}/${P}/nslcd.conf"
+
+       fperms o-r /etc/nslcd.conf
+
+       if use utils; then
+               python_moduleinto nslcd
+               python_foreach_impl && python_domodule utils/*.py
+
+               for script in chsh getent; do
+                       python_foreach_impl python_newscript utils/${script}.py 
${script}.ldap
+               done
+       fi
+
+       systemd_newtmpfilesd "${FILESDIR}"/nslcd-tmpfiles.conf nslcd.conf
+       systemd_dounit "${FILESDIR}"/nslcd.service
+}
+
+multilib_src_test() {
+       python_foreach_impl emake check
+}
+
+pkg_postinst() {
+       echo
+       elog "For this to work you must configure /etc/nslcd.conf"
+       elog "This configuration is similar to pam_ldap's /etc/ldap.conf"
+       echo
+       elog "In order to use nss-pam-ldapd, nslcd needs to be running. You can"
+       elog "start it like this:"
+       elog "  # /etc/init.d/nslcd start"
+       echo
+       elog "You can add it to the default runlevel like so:"
+       elog " # rc-update add nslcd default"
+       elog
+       elog "If you have >=sys-apps/openrc-0.16.3, you can also use s6"
+       elog "to supervise this service."
+       elog "To do this, emerge sys-apps/s6 then add nslcd-s6"
+       elog "default runlevel instead of nslcd."
+       elog
+       elog "If you are upgrading, keep in mind that /etc/nss-ldapd.conf"
+       elog " is now named /etc/nslcd.conf"
+       echo
+}

Reply via email to