diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-08-24 19:07:30 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-08-24 19:07:30 +0000 |
commit | b22b5beca66a737c8799455dff5c6efa3699d298 (patch) | |
tree | 425b3a04d67b7698a8b953616636d75d3e2501f1 /net-libs | |
parent | oops. whitespace. (diff) | |
download | historical-b22b5beca66a737c8799455dff5c6efa3699d298.tar.gz historical-b22b5beca66a737c8799455dff5c6efa3699d298.tar.bz2 historical-b22b5beca66a737c8799455dff5c6efa3699d298.zip |
Version bump, ready for OpenLDAP2.2.
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/pam_ldap/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/pam_ldap/files/digest-pam_ldap-171 | 1 | ||||
-rw-r--r-- | net-libs/pam_ldap/pam_ldap-171.ebuild | 33 |
3 files changed, 40 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/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/* +} |