Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/pam_fprint/
Date: Wed, 03 Jan 2018 18:39:11
Message-Id: 1515004628.2cb45c4ded78477a5d359ce9a68e470fd0eecfe7.soap@gentoo
1 commit: 2cb45c4ded78477a5d359ce9a68e470fd0eecfe7
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 3 18:37:08 2018 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 18:37:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cb45c4d
7
8 sys-auth/pam_fprint: Port to EAPI 6
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 sys-auth/pam_fprint/pam_fprint-0.2-r1.ebuild | 21 ++++++++++-----------
13 1 file changed, 10 insertions(+), 11 deletions(-)
14
15 diff --git a/sys-auth/pam_fprint/pam_fprint-0.2-r1.ebuild b/sys-auth/pam_fprint/pam_fprint-0.2-r1.ebuild
16 index 656e7e1b384..8179d8611ad 100644
17 --- a/sys-auth/pam_fprint/pam_fprint-0.2-r1.ebuild
18 +++ b/sys-auth/pam_fprint/pam_fprint-0.2-r1.ebuild
19 @@ -1,9 +1,9 @@
20 -# Copyright 1999-2014 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=3
25 +EAPI=6
26
27 -inherit eutils pam
28 +inherit pam
29
30 DESCRIPTION="a simple PAM module which uses libfprint's functionality for authentication"
31 HOMEPAGE="http://www.reactivated.net/fprint/wiki/Pam_fprint"
32 @@ -14,17 +14,16 @@ SLOT="0"
33 KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86"
34 IUSE=""
35
36 -RDEPEND="sys-auth/libfprint
37 +RDEPEND="
38 + sys-auth/libfprint
39 sys-libs/pam"
40 DEPEND="${RDEPEND}"
41
42 -src_prepare() {
43 - epatch "${FILESDIR}"/${P}-headers.patch
44 -}
45 +PATCHES=( "${FILESDIR}"/${P}-headers.patch )
46
47 src_install() {
48 - dopammod src/${PN}.so || die
49 - newbin src/pamtest pamtest.fprint || die
50 - dobin src/pam_fprint_enroll || die
51 - dodoc AUTHORS ChangeLog NEWS README || die
52 + dopammod src/${PN}.so
53 + newbin src/pamtest pamtest.fprint
54 + dobin src/pam_fprint_enroll
55 + einstalldocs
56 }