diff options
Diffstat (limited to 'sys-auth')
-rw-r--r-- | sys-auth/pam_ldap/ChangeLog | 9 | ||||
-rw-r--r-- | sys-auth/pam_ldap/files/digest-pam_ldap-184 | 3 | ||||
-rw-r--r-- | sys-auth/pam_ldap/pam_ldap-184.ebuild | 45 |
3 files changed, 55 insertions, 2 deletions
diff --git a/sys-auth/pam_ldap/ChangeLog b/sys-auth/pam_ldap/ChangeLog index 7718f00aa691..6a2797fdf715 100644 --- a/sys-auth/pam_ldap/ChangeLog +++ b/sys-auth/pam_ldap/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-auth/pam_ldap -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ldap/ChangeLog,v 1.37 2006/12/17 21:57:50 killerfox Exp $ +# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ldap/ChangeLog,v 1.38 2007/09/18 23:25:19 robbat2 Exp $ + +*pam_ldap-184 (18 Sep 2007) + + 18 Sep 2007; Robin H. Johnson <robbat2@gentoo.org> +pam_ldap-184.ebuild: + Bug #173384, version bump. 17 Dec 2006; René Nussbaumer <killerfox@gentoo.org> pam_ldap-183.ebuild: Stable on hppa. See bug #153916. diff --git a/sys-auth/pam_ldap/files/digest-pam_ldap-184 b/sys-auth/pam_ldap/files/digest-pam_ldap-184 new file mode 100644 index 000000000000..99468439e18d --- /dev/null +++ b/sys-auth/pam_ldap/files/digest-pam_ldap-184 @@ -0,0 +1,3 @@ +MD5 1b381b5f1ce67fe0a885d9a7c69b93af pam_ldap-184.tar.gz 128053 +RMD160 00f08117c72ec3af3b1e32856ffeaf3a8768cde9 pam_ldap-184.tar.gz 128053 +SHA256 2dd4df6bfddd80580af599dbfb631f907d796df478c22949af4552eaf750c6f3 pam_ldap-184.tar.gz 128053 diff --git a/sys-auth/pam_ldap/pam_ldap-184.ebuild b/sys-auth/pam_ldap/pam_ldap-184.ebuild new file mode 100644 index 000000000000..34833ec946d9 --- /dev/null +++ b/sys-auth/pam_ldap/pam_ldap-184.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ldap/pam_ldap-184.ebuild,v 1.1 2007/09/18 23:25:19 robbat2 Exp $ + +WANT_AUTOCONF="latest" +WANT_AUTOMAKE="latest" + +inherit eutils pam autotools + +DESCRIPTION="PAM LDAP Module" +HOMEPAGE="http://www.padl.com/OSS/pam_ldap.html" +SRC_URI="http://www.padl.com/download/${P}.tar.gz" + +LICENSE="|| ( GPL-2 LGPL-2 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="ssl sasl" +DEPEND=">=sys-libs/glibc-2.1.3 + >=sys-libs/pam-0.72 + >=net-nds/openldap-2.1.30-r5 + sasl? ( dev-libs/cyrus-sasl )" + +src_unpack() { + unpack ${A} + #EPATCH_OPTS="-p1 -d ${S}" epatch ${FILESDIR}/${PN}-176-fix-referral-tls.patch + + cd "${S}" + eautoreconf +} + +src_compile() { + econf --with-ldap-lib=openldap `use_enable ssl` || die + emake || die +} + +src_install() { + dopammod pam_ldap.so + + dodoc pam.conf ldap.conf ldapns.schema chsh chfn certutil + dodoc ChangeLog CVSVersionInfo.txt README AUTHORS ns-pwd-policy.schema + doman pam_ldap.5 + + docinto pam.d + dodoc pam.d/* +} |