Gentoo Archives: gentoo-commits

From: "Stefaan De Roeck (stefaan)" <stefaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-fs/autofs: ChangeLog autofs-5.0.3-r1.ebuild
Date: Fri, 01 Feb 2008 09:07:22
Message-Id: E1JKrrj-0004np-3g@stork.gentoo.org
1 stefaan 08/02/01 09:07:19
2
3 Modified: ChangeLog
4 Added: autofs-5.0.3-r1.ebuild
5 Log:
6 Add use flag for sasl, force dependency on krb5 when using sasl (bug #208393)
7 (Portage version: 2.1.4.1)
8
9 Revision Changes Path
10 1.66 net-fs/autofs/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.66&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/autofs/ChangeLog?rev=1.66&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/autofs/ChangeLog?r1=1.65&r2=1.66
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v
19 retrieving revision 1.65
20 retrieving revision 1.66
21 diff -u -r1.65 -r1.66
22 --- ChangeLog 31 Jan 2008 23:19:24 -0000 1.65
23 +++ ChangeLog 1 Feb 2008 09:07:18 -0000 1.66
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-fs/autofs
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.65 2008/01/31 23:19:24 stefaan Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/ChangeLog,v 1.66 2008/02/01 09:07:18 stefaan Exp $
29 +
30 +*autofs-5.0.3-r1 (01 Feb 2008)
31 +
32 + 01 Feb 2008; Stefaan De Roeck <stefaan@g.o>
33 + +autofs-5.0.3-r1.ebuild:
34 + Add use flag for sasl, force dependency on krb5 when using sasl (bug #208393)
35
36 *autofs-5.0.3 (31 Jan 2008)
37
38
39
40
41 1.1 net-fs/autofs/autofs-5.0.3-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/autofs/autofs-5.0.3-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/autofs/autofs-5.0.3-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: autofs-5.0.3-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.3-r1.ebuild,v 1.1 2008/02/01 09:07:18 stefaan Exp $
51
52 inherit eutils multilib autotools
53
54 IUSE="ldap sasl"
55 DESCRIPTION="Kernel based automounter"
56 HOMEPAGE="http://www.linux-consulting.com/Amd_AutoFS/autofs.html"
57 SRC_URI_BASE="mirror://kernel/linux/daemons/${PN}/v5"
58 SRC_URI="${SRC_URI_BASE}/${P}.tar.bz2
59 ${SRC_URI_BASE}/${P}-ldap-page-control-configure-fix.patch
60 ${SRC_URI_BASE}/${P}-xfn-not-supported.patch
61 ${SRC_URI_BASE}/${P}-basedn-with-spaces-fix-3.patch
62 ${SRC_URI_BASE}/${P}-nfs4-tcp-only.patch
63 ${SRC_URI_BASE}/${P}-correct-ldap-lib.patch"
64 DEPEND="virtual/libc
65 ldap? ( >=net-nds/openldap-2.0 )
66 sasl? ( virtual/krb5 )"
67 # currently, sasl code assumes the presence of kerberosV
68 SLOT="0"
69 LICENSE="GPL-2"
70 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
71
72 src_unpack() {
73 unpack ${P}.tar.bz2
74 PATCH_LIST="${P}-ldap-page-control-configure-fix.patch ${P}-xfn-not-supported.patch ${P}-basedn-with-spaces-fix-3.patch ${P}-nfs4-tcp-only.patch ${P}-correct-ldap-lib.patch"
75 for i in ${PATCH_LIST}; do
76 EPATCH_OPTS="-p1 -d ${S}" epatch ${DISTDIR}/${i}
77 done
78
79 cd "${S}"
80 eautoconf || die "Autoconf failed"
81 }
82
83 src_compile() {
84 econf \
85 $(use_with ldap openldap) \
86 $(use_with sasl) \
87 --enable-ignore-busy \
88 || die "configure failed"
89
90 emake || die "make failed"
91 }
92
93 src_install() {
94 make DESTDIR="${D}" install || die "make install failed"
95
96 newinitd "${FILESDIR}"/autofs.rc14 autofs
97 }
98
99 pkg_postinst() {
100 elog "Note: If you plan on using autofs for automounting"
101 elog "remote NFS mounts without having the NFS daemon running"
102 elog "please add portmap to your default run-level."
103 }
104
105
106
107 --
108 gentoo-commits@l.g.o mailing list