Gentoo Archives: gentoo-commits

From: "Constanze Hausner (constanze)" <constanze@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/pam_ldap: pam_ldap-186.ebuild ChangeLog
Date: Thu, 25 Nov 2010 20:28:14
Message-Id: 20101125202810.D660620051@flycatcher.gentoo.org
1 constanze 10/11/25 20:28:10
2
3 Modified: ChangeLog
4 Added: pam_ldap-186.ebuild
5 Log:
6 Version bump, contains only bugfixes (requested by bug #302765)
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.41 sys-auth/pam_ldap/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ldap/ChangeLog?rev=1.41&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ldap/ChangeLog?rev=1.41&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ldap/ChangeLog?r1=1.40&r2=1.41
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-auth/pam_ldap/ChangeLog,v
19 retrieving revision 1.40
20 retrieving revision 1.41
21 diff -u -r1.40 -r1.41
22 --- ChangeLog 29 May 2009 13:26:11 -0000 1.40
23 +++ ChangeLog 25 Nov 2010 20:28:10 -0000 1.41
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-auth/pam_ldap
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ldap/ChangeLog,v 1.40 2009/05/29 13:26:11 flameeyes Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ldap/ChangeLog,v 1.41 2010/11/25 20:28:10 constanze Exp $
30 +
31 +*pam_ldap-186 (25 Nov 2010)
32 +
33 + 25 Nov 2010; Constanze Hausner <constanze@g.o> +pam_ldap-186.ebuild:
34 + Version bump, contains only bugfixes (requested by bug #302765)
35
36 29 May 2009; Diego E. Pettenò <flameeyes@g.o>
37 -pam_ldap-180.ebuild, -pam_ldap-182.ebuild:
38
39
40
41 1.1 sys-auth/pam_ldap/pam_ldap-186.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ldap/pam_ldap-186.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ldap/pam_ldap-186.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pam_ldap-186.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ldap/pam_ldap-186.ebuild,v 1.1 2010/11/25 20:28:10 constanze Exp $
51
52 inherit eutils pam
53
54 DESCRIPTION="PAM LDAP Module"
55 HOMEPAGE="http://www.padl.com/OSS/pam_ldap.html"
56 SRC_URI="http://www.padl.com/download/${P}.tar.gz"
57
58 LICENSE="|| ( GPL-2 LGPL-2 )"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
61 IUSE="ssl sasl"
62 DEPEND=">=sys-libs/glibc-2.1.3
63 >=sys-libs/pam-0.72
64 >=net-nds/openldap-2.1.30-r5
65 sasl? ( dev-libs/cyrus-sasl )"
66
67 src_unpack() {
68 unpack ${A}
69
70 cd "${S}"
71 }
72
73 src_compile() {
74 econf --with-ldap-lib=openldap `use_enable ssl` || die
75 emake || die
76 }
77
78 src_install() {
79 dopammod pam_ldap.so
80
81 dodoc pam.conf ldap.conf ldapns.schema chsh chfn certutil
82 dodoc ChangeLog CVSVersionInfo.txt README AUTHORS ns-pwd-policy.schema
83 doman pam_ldap.5
84
85 docinto pam.d
86 dodoc pam.d/*
87 }