diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-04-20 23:03:48 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-04-20 23:03:48 +0000 |
commit | 091a050398f3878f80e76441690377e5f5b14d33 (patch) | |
tree | bcc2191c30b47b5be4509d109ca985c75539d235 /net-libs/pam_ldap | |
parent | fix SRC_URI (diff) | |
download | historical-091a050398f3878f80e76441690377e5f5b14d33.tar.gz historical-091a050398f3878f80e76441690377e5f5b14d33.tar.bz2 historical-091a050398f3878f80e76441690377e5f5b14d33.zip |
Resolved bug #1944
Diffstat (limited to 'net-libs/pam_ldap')
-rw-r--r-- | net-libs/pam_ldap/ChangeLog | 8 | ||||
-rw-r--r-- | net-libs/pam_ldap/files/digest-pam_ldap-134-r1 | 1 | ||||
-rw-r--r-- | net-libs/pam_ldap/pam_ldap-134-r1.ebuild | 42 |
3 files changed, 50 insertions, 1 deletions
diff --git a/net-libs/pam_ldap/ChangeLog b/net-libs/pam_ldap/ChangeLog index d7426cb09d9e..ed09c14dcb33 100644 --- a/net-libs/pam_ldap/ChangeLog +++ b/net-libs/pam_ldap/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/pam_ldap # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-libs/pam_ldap/ChangeLog,v 1.1 2002/02/01 21:53:34 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/pam_ldap/ChangeLog,v 1.2 2002/04/20 23:03:48 rphillips Exp $ + +*pam_ldap-134-r1 (18 Apr 2002) + + 18 Apr 2002; Ryan Phillips <rphillips@gentoo.org> pam_ldap-134-r1 : + + Resolved bug (#1944) *pam_ldap-134 (1 Feb 2002) diff --git a/net-libs/pam_ldap/files/digest-pam_ldap-134-r1 b/net-libs/pam_ldap/files/digest-pam_ldap-134-r1 new file mode 100644 index 000000000000..2ec73487cff1 --- /dev/null +++ b/net-libs/pam_ldap/files/digest-pam_ldap-134-r1 @@ -0,0 +1 @@ +MD5 7d6583b37e02202c38ef95738880fadb pam_ldap-134.tar.gz 101141 diff --git a/net-libs/pam_ldap/pam_ldap-134-r1.ebuild b/net-libs/pam_ldap/pam_ldap-134-r1.ebuild new file mode 100644 index 000000000000..471603064721 --- /dev/null +++ b/net-libs/pam_ldap/pam_ldap-134-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-libs/pam_ldap/pam_ldap-134-r1.ebuild,v 1.1 2002/04/20 23:03:48 rphillips Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="PAM LDAP Module" +HOMEPAGE="http://www.padl.com/pam_ldap.html" +SRC_URI="ftp://ftp.padl.com/pub/${P}.tar.gz" + +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 + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + --with-ldap-lib=openldap || die + + emake || die +} + +src_install() { + + exeinto /lib/security + doexe pam_ldap.so + + dodoc pam.conf ldap.conf + dodoc ChangeLog COPYING.* CVSVersionInfo.txt README + docinto pam.d + dodoc pam.d/* +} + |