Gentoo Archives: gentoo-commits

From: "Matt Turner (mattst88)" <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/pam_mount: pam_mount-2.14.ebuild ChangeLog
Date: Sat, 05 Oct 2013 01:15:16
Message-Id: 20131005011513.A03322004C@flycatcher.gentoo.org
1 mattst88 13/10/05 01:15:13
2
3 Modified: ChangeLog
4 Added: pam_mount-2.14.ebuild
5 Log:
6 Version bump to 2.14.
7
8 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)
9
10 Revision Changes Path
11 1.72 sys-auth/pam_mount/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/ChangeLog?rev=1.72&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/ChangeLog?rev=1.72&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/ChangeLog?r1=1.71&r2=1.72
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v
20 retrieving revision 1.71
21 retrieving revision 1.72
22 diff -u -r1.71 -r1.72
23 --- ChangeLog 19 Aug 2013 13:36:10 -0000 1.71
24 +++ ChangeLog 5 Oct 2013 01:15:13 -0000 1.72
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-auth/pam_mount
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.71 2013/08/19 13:36:10 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.72 2013/10/05 01:15:13 mattst88 Exp $
30 +
31 +*pam_mount-2.14 (05 Oct 2013)
32 +
33 + 05 Oct 2013; Matt Turner <mattst88@g.o> +pam_mount-2.14.ebuild:
34 + Version bump to 2.14.
35
36 19 Aug 2013; Agostino Sarubbo <ago@g.o> pam_mount-2.13-r1.ebuild:
37 Stable for ppc, wrt bug #461388
38
39
40
41 1.1 sys-auth/pam_mount/pam_mount-2.14.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/pam_mount-2.14.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_mount/pam_mount-2.14.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pam_mount-2.14.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/pam_mount-2.14.ebuild,v 1.1 2013/10/05 01:15:13 mattst88 Exp $
51
52 EAPI=4
53
54 inherit multilib
55
56 DESCRIPTION="A PAM module that can mount volumes for a user session"
57 HOMEPAGE="http://pam-mount.sourceforge.net"
58 SRC_URI="mirror://sourceforge/pam-mount/${P}.tar.xz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63
64 IUSE="crypt ssl selinux"
65
66 COMMON_DEPEND=">=sys-libs/pam-0.99
67 >=sys-libs/libhx-3.12.1
68 >=dev-libs/libxml2-2.6
69 crypt? ( >=sys-fs/cryptsetup-1.1.0 )
70 ssl? ( >=dev-libs/openssl-0.9.8 )
71 selinux? ( sys-libs/libselinux )"
72 DEPEND="${COMMON_DEPEND}
73 virtual/pkgconfig
74 app-arch/xz-utils"
75 RDEPEND="${COMMON_DEPEND}
76 >=sys-apps/util-linux-2.20"
77
78 src_configure() {
79 econf --with-slibdir="/$(get_libdir)" \
80 $(use_with crypt cryptsetup) \
81 $(use_with ssl crypto) \
82 $(use_with selinux)
83 }
84
85 src_install() {
86 default
87 use selinux || rm -r "${D}"/etc/selinux
88 dodoc doc/*.txt
89 }