summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2004-08-24 19:07:30 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2004-08-24 19:07:30 +0000
commit81f49e2964d171dfd82c424eee24e93dd1ab06ba (patch)
treed2973b7e3380cccd519ab1b2ba88e3e0705f3d56 /net-libs
parentoops. whitespace. (Manifest recommit) (diff)
downloadgentoo-2-81f49e2964d171dfd82c424eee24e93dd1ab06ba.tar.gz
gentoo-2-81f49e2964d171dfd82c424eee24e93dd1ab06ba.tar.bz2
gentoo-2-81f49e2964d171dfd82c424eee24e93dd1ab06ba.zip
Version bump, ready for OpenLDAP2.2.
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/pam_ldap/ChangeLog7
-rw-r--r--net-libs/pam_ldap/Manifest2
-rw-r--r--net-libs/pam_ldap/files/digest-pam_ldap-1711
-rw-r--r--net-libs/pam_ldap/pam_ldap-171.ebuild33
4 files changed, 42 insertions, 1 deletions
diff --git a/net-libs/pam_ldap/ChangeLog b/net-libs/pam_ldap/ChangeLog
index d6aa050bb957..b7c6731bc33e 100644
--- a/net-libs/pam_ldap/ChangeLog
+++ b/net-libs/pam_ldap/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-libs/pam_ldap
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/pam_ldap/ChangeLog,v 1.15 2004/06/24 23:17:31 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/pam_ldap/ChangeLog,v 1.16 2004/08/24 19:07:30 robbat2 Exp $
+
+*pam_ldap-171 (24 Aug 2004)
+
+ 24 Aug 2004; Robin H. Johnson <robbat2@gentoo.org> +pam_ldap-171.ebuild:
+ Version bump, ready for OpenLDAP2.2.
06 Jun 2004; Guy Martin <gmsoft@gentoo.org> pam_ldap-167.ebuild:
Marked stable on hppa.
diff --git a/net-libs/pam_ldap/Manifest b/net-libs/pam_ldap/Manifest
index 2ea56620cb35..f0786448eddf 100644
--- a/net-libs/pam_ldap/Manifest
+++ b/net-libs/pam_ldap/Manifest
@@ -1,3 +1,4 @@
+MD5 9aae14b370f6034c0b25e458ff023001 pam_ldap-171.ebuild 863
MD5 9aae14b370f6034c0b25e458ff023001 pam_ldap-167.ebuild 863
MD5 9773c0adc34e54c0cc6d708d82050959 pam_ldap-164.ebuild 781
MD5 5b68aa001d864600b5f21b42a4c2777b pam_ldap-161.ebuild 781
@@ -7,3 +8,4 @@ MD5 f6a188644f736d46d200c045eff82bea files/digest-pam_ldap-156 64
MD5 e7be3daad202a50aecd0d3888bf5c46e files/digest-pam_ldap-161 64
MD5 58a43c49c9c6fac27d940fccdbfd5cf3 files/digest-pam_ldap-164 64
MD5 4ca7e1ee799ccfbd7c71824bbbb752bd files/digest-pam_ldap-167 64
+MD5 593769a88e934c0a00456d35cce22316 files/digest-pam_ldap-171 64
diff --git a/net-libs/pam_ldap/files/digest-pam_ldap-171 b/net-libs/pam_ldap/files/digest-pam_ldap-171
new file mode 100644
index 000000000000..08ba466164b7
--- /dev/null
+++ b/net-libs/pam_ldap/files/digest-pam_ldap-171
@@ -0,0 +1 @@
+MD5 c95e1c77a4cb46662200814166bbb608 pam_ldap-171.tar.gz 120623
diff --git a/net-libs/pam_ldap/pam_ldap-171.ebuild b/net-libs/pam_ldap/pam_ldap-171.ebuild
new file mode 100644
index 000000000000..2f3e3971ee21
--- /dev/null
+++ b/net-libs/pam_ldap/pam_ldap-171.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/pam_ldap/pam_ldap-171.ebuild,v 1.1 2004/08/24 19:07:30 robbat2 Exp $
+
+DESCRIPTION="PAM LDAP Module"
+HOMEPAGE="http://www.padl.com/OSS/pam_ldap.html"
+SRC_URI="http://www.padl.com/download/${P}.tar.gz"
+SLOT="0"
+LICENSE="GPL-2 | LGPL-2"
+KEYWORDS="~x86 ~sparc ~ppc ~hppa"
+IUSE="ssl"
+DEPEND=">=sys-libs/glibc-2.1.3
+ >=sys-libs/pam-0.72
+ >=net-nds/openldap-1.2.11"
+
+src_compile() {
+ aclocal
+ autoconf
+ automake --add-missing
+
+ econf --with-ldap-lib=openldap `use_enable ssl` || die
+ emake || die
+}
+
+src_install() {
+ exeinto /lib/security
+ doexe pam_ldap.so
+
+ dodoc pam.conf ldap.conf ldapns.schema chsh chfn certutil
+ dodoc ChangeLog COPYING.* CVSVersionInfo.txt README AUTHORS ns-pwd-policy.schema
+ docinto pam.d
+ dodoc pam.d/*
+}