Gentoo Archives: gentoo-commits

From: "Hanno Boeck (hanno)" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/pam_mount: pam_mount-2.6.ebuild ChangeLog pam_mount-2.4.ebuild pam_mount-2.0.ebuild pam_mount-1.33.ebuild
Date: Sun, 28 Nov 2010 01:56:57
Message-Id: 20101128015652.2B17320051@flycatcher.gentoo.org
1 hanno 10/11/28 01:56:52
2
3 Modified: ChangeLog
4 Added: pam_mount-2.6.ebuild
5 Removed: pam_mount-2.4.ebuild pam_mount-2.0.ebuild
6 pam_mount-1.33.ebuild
7 Log:
8 Version bump and install pmvarrun to bin instead of sbin (#330995).
9
10 (Portage version: 2.1.9.25/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.47 sys-auth/pam_mount/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/ChangeLog?rev=1.47&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/ChangeLog?rev=1.47&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/ChangeLog?r1=1.46&r2=1.47
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v
22 retrieving revision 1.46
23 retrieving revision 1.47
24 diff -u -r1.46 -r1.47
25 --- ChangeLog 5 Oct 2010 11:32:01 -0000 1.46
26 +++ ChangeLog 28 Nov 2010 01:56:52 -0000 1.47
27 @@ -1,6 +1,12 @@
28 # ChangeLog for sys-auth/pam_mount
29 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.46 2010/10/05 11:32:01 hanno Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.47 2010/11/28 01:56:52 hanno Exp $
32 +
33 +*pam_mount-2.6 (28 Nov 2010)
34 +
35 + 28 Nov 2010; Hanno Boeck <hanno@g.o> +pam_mount-2.6.ebuild,
36 + +files/pam_mount-2.6-pmvarrun-bin.diff:
37 + Version bump and install pmvarrun to bin instead of sbin (#330995).
38
39 *pam_mount-2.5 (05 Oct 2010)
40
41
42
43
44 1.1 sys-auth/pam_mount/pam_mount-2.6.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/pam_mount-2.6.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/pam_mount-2.6.ebuild?rev=1.1&content-type=text/plain
48
49 Index: pam_mount-2.6.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/pam_mount-2.6.ebuild,v 1.1 2010/11/28 01:56:52 hanno Exp $
54
55 EAPI=3
56
57 inherit multilib autotools
58
59 DESCRIPTION="A PAM module that can mount volumes for a user session"
60 HOMEPAGE="http://pam-mount.sourceforge.net"
61 SRC_URI="mirror://sourceforge/pam-mount/${P}.tar.xz"
62
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86"
66
67 IUSE="crypt"
68 DEPEND=">=sys-libs/pam-0.99
69 dev-libs/openssl
70 >=sys-libs/libhx-3.4
71 dev-libs/libxml2
72 >=sys-fs/cryptsetup-1.1.0
73 dev-util/pkgconfig
74 app-arch/xz-utils"
75 RDEPEND=">=sys-libs/pam-0.99
76 dev-libs/openssl
77 >=sys-libs/libhx-3.4
78 dev-libs/libxml2
79 >=sys-fs/cryptsetup-1.1.0
80 sys-process/lsof"
81
82 src_prepare() {
83 epatch "${FILESDIR}/pam_mount-2.6-pmvarrun-bin.diff"
84 eautoreconf
85 }
86
87 src_configure() {
88 econf --with-slibdir="/$(get_libdir)" || die "econf failed"
89 }
90
91 src_install() {
92 emake DESTDIR="${D}" install || die "make install failed"
93 dodoc doc/*.txt || die "dodoc failed"
94 }