Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/pam_skey/
Date: Wed, 28 Aug 2019 10:19:00
Message-Id: 1566987517.0d92cd3008d09ce85a99b793f8b81443579e8b94.ulm@gentoo
1 commit: 0d92cd3008d09ce85a99b793f8b81443579e8b94
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 28 10:18:24 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 28 10:18:37 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d92cd30
7
8 sys-auth/pam_skey: Remove old.
9
10 Package-Manager: Portage-2.3.73, Repoman-2.3.17
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 sys-auth/pam_skey/pam_skey-1.1.5-r5.ebuild | 58 ------------------------------
14 1 file changed, 58 deletions(-)
15
16 diff --git a/sys-auth/pam_skey/pam_skey-1.1.5-r5.ebuild b/sys-auth/pam_skey/pam_skey-1.1.5-r5.ebuild
17 deleted file mode 100644
18 index 662347a3b86..00000000000
19 --- a/sys-auth/pam_skey/pam_skey-1.1.5-r5.ebuild
20 +++ /dev/null
21 @@ -1,58 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -inherit eutils pam autotools multilib readme.gentoo-r1
28 -
29 -DESCRIPTION="PAM interface for the S/Key authentication system"
30 -HOMEPAGE="http://freshmeat.net/projects/pam_skey/"
31 -SRC_URI="http://dkorunic.net/tarballs/${P}.tar.gz
32 - mirror://gentoo/${P}-patches-6.tar.xz"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -KEYWORDS="amd64 x86"
37 -
38 -RDEPEND="net-libs/libnsl:0=
39 - >=sys-libs/pam-0.78-r3
40 - >=sys-auth/skey-1.1.5-r4"
41 -DEPEND="${RDEPEND}
42 - app-arch/xz-utils"
43 -
44 -DOCS="README INSTALL"
45 -DOC_CONTENTS="To use the pam_skey module, you need to configure PAM
46 - by adding a line like:
47 - \n\nauth [success=done ignore=ignore auth_err=die default=bad] pam_skey.so\n
48 - \nto an appropriate place in the /etc/pam.d/system-auth file.
49 - Consult the README and INSTALL files in /usr/share/doc/${PF}
50 - for detailed instructions.
51 - \n\nPlease note that calling this module from unprivileged
52 - applications, e.g. screensavers, is not supported.
53 - \n\nError checking has become stricter in pam_skey-1.1.5-r4;
54 - errors returned from the underlying skey library when accessing
55 - the S/Key data base will no longer be ignored.
56 - Make sure that your PAM configuration is correct."
57 -
58 -src_prepare() {
59 - EPATCH_SUFFIX=patch epatch
60 - epatch_user
61 -
62 - cd autoconf
63 - eautoconf
64 - eautoheader
65 - mv configure defs.h.in .. || die "mv failed"
66 -}
67 -
68 -src_configure() {
69 - econf --libdir="/$(get_libdir)" CFLAGS="${CFLAGS} -fPIC"
70 -}
71 -
72 -src_install() {
73 - default
74 - readme.gentoo_create_doc
75 -}
76 -
77 -pkg_postinst() {
78 - readme.gentoo_print_elog
79 -}