Gentoo Archives: gentoo-commits

From: Hanno Boeck <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/pam_mount/
Date: Mon, 26 Sep 2016 11:11:42
Message-Id: 1474888231.c2e9b60123a17da3fa4d6da997df0722aa50edc1.hanno@gentoo
1 commit: c2e9b60123a17da3fa4d6da997df0722aa50edc1
2 Author: Hanno <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 26 11:10:31 2016 +0000
4 Commit: Hanno Boeck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 26 11:10:31 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2e9b601
7
8 sys-auth/pam_mount: Version bump
9
10 Should fix compilation with OpenSSL 1.1 (bug #592584).
11
12 Package-Manager: portage-2.3.1
13
14 sys-auth/pam_mount/Manifest | 1 +
15 sys-auth/pam_mount/pam_mount-2.16.ebuild | 41 ++++++++++++++++++++++++++++++++
16 2 files changed, 42 insertions(+)
17
18 diff --git a/sys-auth/pam_mount/Manifest b/sys-auth/pam_mount/Manifest
19 index d618338..c722149 100644
20 --- a/sys-auth/pam_mount/Manifest
21 +++ b/sys-auth/pam_mount/Manifest
22 @@ -1,2 +1,3 @@
23 DIST pam_mount-2.14.tar.xz 312776 SHA256 6f66cbb34568875772d854d3f2a8948f97f3f1c7f30e3ea2474e1d4b227adcf9 SHA512 621fc13f01c625bb0c8cb9ac1b7bcfd9851f239b37c4479eb9ff958ad2b7f00698df32e32893558119f486e2e5fa05514f6e8e34498359c432db75706cc2477e WHIRLPOOL 6d4f74067e73cb61cb777d8125c2d4bb4e41510e4ec031b23f00cc3eb06c70312b6c53d785c2a4e3509a16fa1880b726bb165e3a81ba27b16d820180a776b30e
24 DIST pam_mount-2.15.tar.xz 312076 SHA256 a54efb4a8e8dd52c77b15cd36d9354b4733bb9b4cae75083801c18e67fc12a24 SHA512 97252f3b65b1d1a42168b515c384a118e9f06fa68e2ceb9213cfc8ec4b967c52f2cb58742ebe117d7f5764551a371b7f71322a3de5f2912fc8722253081d77a4 WHIRLPOOL bbaacf839861d70e4fafdce07aad1f7fb35eb8c18cbd8d37520c60ff38cc8e21af428a0348a35d6ff134a5e198add201fb81b632832abd8ef75f04f8b3ce29e5
25 +DIST pam_mount-2.16.tar.xz 312316 SHA256 ae0207ea6c96189414f906a7b0880abc7751a98e26b3d0375c9afab3722471e7 SHA512 3a579d7287cfcaef831d3e54d3e912407b65a966303e81c47f445d601f38f866ce04326e3d37a061f74f97b9cfb201e56109f57e55699d15d8f947ae2b91c8e3 WHIRLPOOL dbda92627c55abe113cebfc2961d7ba5cf4d734f63099f407d40da6a8985a927311521f2e183cb1153f85156841c32d55a8ea1733ad5481aaecb1a079212dd12
26
27 diff --git a/sys-auth/pam_mount/pam_mount-2.16.ebuild b/sys-auth/pam_mount/pam_mount-2.16.ebuild
28 new file mode 100644
29 index 00000000..67ef662
30 --- /dev/null
31 +++ b/sys-auth/pam_mount/pam_mount-2.16.ebuild
32 @@ -0,0 +1,41 @@
33 +# Copyright 1999-2016 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=6
38 +
39 +inherit multilib
40 +
41 +DESCRIPTION="A PAM module that can mount volumes for a user session"
42 +HOMEPAGE="http://pam-mount.sourceforge.net"
43 +SRC_URI="mirror://sourceforge/pam-mount/${P}.tar.xz"
44 +
45 +LICENSE="GPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~ppc ~x86"
48 +
49 +IUSE="crypt ssl selinux"
50 +
51 +COMMON_DEPEND=">=sys-libs/pam-0.99
52 + >=sys-libs/libhx-3.12.1
53 + >=dev-libs/libxml2-2.6
54 + crypt? ( >=sys-fs/cryptsetup-1.1.0 )
55 + ssl? ( dev-libs/openssl:0= )
56 + selinux? ( sys-libs/libselinux )"
57 +DEPEND="${COMMON_DEPEND}
58 + virtual/pkgconfig"
59 +RDEPEND="${COMMON_DEPEND}
60 + >=sys-apps/util-linux-2.20"
61 +
62 +src_configure() {
63 + econf --with-slibdir="/$(get_libdir)" \
64 + $(use_with crypt cryptsetup) \
65 + $(use_with ssl crypto) \
66 + $(use_with selinux)
67 +}
68 +
69 +src_install() {
70 + default
71 + use selinux || rm -r "${D}"/etc/selinux
72 + dodoc doc/*.txt
73 +}