Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/asekey/
Date: Sat, 04 Feb 2017 20:07:47
Message-Id: 1486238800.8fd46698f07ff3a4159b50d6f20e3403b6efb985.alonbl@gentoo
1 commit: 8fd46698f07ff3a4159b50d6f20e3403b6efb985
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 4 19:50:08 2017 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 4 20:06:40 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fd46698
7
8 app-crypt/asekey: eapi bump
9
10 Package-Manager: portage-2.3.3
11
12 app-crypt/asekey/asekey-3.7.ebuild | 17 ++++++++---------
13 1 file changed, 8 insertions(+), 9 deletions(-)
14
15 diff --git a/app-crypt/asekey/asekey-3.7.ebuild b/app-crypt/asekey/asekey-3.7.ebuild
16 index d546b09..9b32c32 100644
17 --- a/app-crypt/asekey/asekey-3.7.ebuild
18 +++ b/app-crypt/asekey/asekey-3.7.ebuild
19 @@ -1,10 +1,10 @@
20 -# Copyright 1999-2014 Gentoo Foundation
21 +# Copyright 1999-2017 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 -EAPI="4"
26 +EAPI="6"
27
28 -inherit eutils udev
29 +inherit udev
30
31 DESCRIPTION="ASEKey USB SIM Card Reader"
32 HOMEPAGE="http://www.athena-scs.com/"
33 @@ -21,16 +21,15 @@ RDEPEND="${RDEPEND}
34 DEPEND="${RDEPEND}
35 virtual/pkgconfig"
36
37 +PATCHES=(
38 + "${FILESDIR}/${P}-bundle.patch"
39 +)
40 +
41 src_prepare() {
42 - epatch "${FILESDIR}/${P}-bundle.patch"
43 + default
44 sed -i -e 's/GROUP="pcscd"/ENV{PCSCD}="1"/' "92_pcscd_${PN}.rules" || die
45 }
46
47 src_configure() {
48 econf --with-udev-rules-dir="$(get_udevdir)/rules.d"
49 }
50 -
51 -src_install() {
52 - default
53 - dodoc ChangeLog README
54 -}