Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/ykpers/
Date: Sat, 03 Mar 2018 05:20:29
Message-Id: 1520054385.cd851ba3a2b2df75fc0a51bedac3b2285730d629.gokturk@gentoo
1 commit: cd851ba3a2b2df75fc0a51bedac3b2285730d629
2 Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 3 05:19:45 2018 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 3 05:19:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd851ba3
7
8 sys-auth/ykpers: bump to 1.18.1 #649208
9
10 Closes: https://bugs.gentoo.org/649208
11 Package-Manager: Portage-2.3.19, Repoman-2.3.6
12
13 sys-auth/ykpers/Manifest | 1 +
14 sys-auth/ykpers/ykpers-1.18.1.ebuild | 47 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/sys-auth/ykpers/Manifest b/sys-auth/ykpers/Manifest
18 index 6d28724f6a9..91121948b3f 100644
19 --- a/sys-auth/ykpers/Manifest
20 +++ b/sys-auth/ykpers/Manifest
21 @@ -1 +1,2 @@
22 DIST ykpers-1.18.0.tar.gz 124932 BLAKE2B 48e7045429081c1e577ca560b3a10a4cc380820add40526dbb2a8e0fe347eae79c1dff8335c5363148da55cb374e193230ecb6273b08566ef94959848ceb848e SHA512 d636fcabf94a3fb48841572b7b0f03a12a3b3243b11ed7377654d01c33c7282dc321ee13b13c1ee3f2a49fc5015e326a96ef5bc1594b8592d07c1e5aa0521d20
23 +DIST ykpers-1.18.1.tar.gz 125397 BLAKE2B 7393373414f9f2f9474408c86b8abba0f2034f5908ab8c14fd1dbf9acab40994b43b19031a58f5e889acaf289869b82bd429199237da173e3fa19154b4424374 SHA512 faf9c98fc41a64ae17e2002cd22e89fa2f51de9941aa6eb10c49aa78fd2e2867a5d47fc91fd91ab8e916117cba08629f3f1b076d91698ac2fee6e43366d948a8
24
25 diff --git a/sys-auth/ykpers/ykpers-1.18.1.ebuild b/sys-auth/ykpers/ykpers-1.18.1.ebuild
26 new file mode 100644
27 index 00000000000..0ffb8502d96
28 --- /dev/null
29 +++ b/sys-auth/ykpers/ykpers-1.18.1.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit autotools udev
37 +
38 +DESCRIPTION="Library and tool for personalization of Yubico's YubiKey"
39 +SRC_URI="https://github.com/Yubico/yubikey-personalization/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +HOMEPAGE="https://github.com/Yubico/yubikey-personalization"
41 +
42 +KEYWORDS="~amd64 ~x86"
43 +SLOT="0"
44 +LICENSE="BSD-2"
45 +IUSE="static-libs consolekit"
46 +
47 +RDEPEND="
48 + >=sys-auth/libyubikey-1.6
49 + virtual/libusb:1"
50 +DEPEND="${RDEPEND}
51 + app-text/asciidoc
52 + virtual/pkgconfig"
53 +RDEPEND="${RDEPEND}
54 + consolekit? ( sys-auth/consolekit[acl] )"
55 +
56 +S="${WORKDIR}/yubikey-personalization-${PV}"
57 +
58 +DOCS=( doc/. AUTHORS NEWS README )
59 +
60 +src_prepare() {
61 + default
62 + eautoreconf
63 +}
64 +
65 +src_configure() {
66 + econf \
67 + --libdir=/usr/$(get_libdir) \
68 + --localstatedir=/var \
69 + $(use_enable static-libs static)
70 +}
71 +
72 +src_install() {
73 + default
74 + use consolekit && udev_dorules *.rules
75 +
76 + find "${D}" -name '*.la' -delete || die
77 +}