Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/pam_ssh: pam_ssh-2.1.ebuild ChangeLog
Date: Tue, 07 Jul 2015 08:44:58
Message-Id: 20150707084452.2187D762@oystercatcher.gentoo.org
1 vapier 15/07/07 08:44:52
2
3 Modified: ChangeLog
4 Added: pam_ssh-2.1.ebuild
5 Log:
6 Version bump #503424 by David Heidelberg.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
9
10 Revision Changes Path
11 1.57 sys-auth/pam_ssh/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ssh/ChangeLog?rev=1.57&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ssh/ChangeLog?rev=1.57&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ssh/ChangeLog?r1=1.56&r2=1.57
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-auth/pam_ssh/ChangeLog,v
20 retrieving revision 1.56
21 retrieving revision 1.57
22 diff -u -r1.56 -r1.57
23 --- ChangeLog 23 Dec 2013 09:14:48 -0000 1.56
24 +++ ChangeLog 7 Jul 2015 08:44:52 -0000 1.57
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-auth/pam_ssh
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ssh/ChangeLog,v 1.56 2013/12/23 09:14:48 vapier Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ssh/ChangeLog,v 1.57 2015/07/07 08:44:52 vapier Exp $
31 +
32 +*pam_ssh-2.1 (07 Jul 2015)
33 +
34 + 07 Jul 2015; Mike Frysinger <vapier@g.o>
35 + +files/pam_ssh-2.1-dot-ssh-check.patch, +pam_ssh-2.1.ebuild:
36 + Version bump #503424 by David Heidelberg.
37
38 23 Dec 2013; Mike Frysinger <vapier@g.o> pam_ssh-1.98.ebuild:
39 Mark alpha/ia64 stable #459960.
40
41
42
43 1.1 sys-auth/pam_ssh/pam_ssh-2.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ssh/pam_ssh-2.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_ssh/pam_ssh-2.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pam_ssh-2.1.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_ssh/pam_ssh-2.1.ebuild,v 1.1 2015/07/07 08:44:52 vapier Exp $
53
54 EAPI="5"
55
56 inherit pam eutils flag-o-matic readme.gentoo
57
58 DESCRIPTION="Uses ssh-agent to provide single sign-on"
59 HOMEPAGE="http://pam-ssh.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/pam-ssh/${P}.tar.xz"
61
62 LICENSE="BSD-2 BSD ISC"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
65 IUSE=""
66
67 # Only supports OpenSSH via `ssh-agent` #282993
68 DEPEND="virtual/pam
69 dev-libs/openssl:0="
70 RDEPEND="${DEPEND}
71 net-misc/openssh"
72
73 DOC_CONTENTS="
74 You can enable pam_ssh for system authentication by enabling
75 the pam_ssh USE flag on sys-auth/pambase.
76 "
77
78 src_prepare() {
79 epatch "${FILESDIR}"/${P}-dot-ssh-check.patch #503424#c5
80 }
81
82 src_configure() {
83 # hide all the otherwise-exported symbols that may clash with
84 # other software loading the PAM modules (see bug #274924 as an
85 # example).
86 append-ldflags -Wl,--version-script="${FILESDIR}"/pam_symbols.ver
87
88 # Set the cache var so the configure script doesn't go probing hardcoded
89 # file system paths and picking up the wrong thing.
90 export ac_cv_openssldir=''
91
92 # Avoid cross-compiling funkiness and requiring openssh at build time.
93 export PATH_SSH_AGENT="${EPREFIX}/usr/bin/ssh-agent"
94
95 econf \
96 "--with-pam-dir=$(getpam_mod_dir)"
97 }
98
99 src_install() {
100 default
101 prune_libtool_files --modules
102 readme.gentoo_create_doc
103 }