blob: 71e5a10f76f45ad430c0d28ec9ba3a76b74d8b31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools udev
DESCRIPTION="Library and tool for personalization of Yubico's YubiKey"
SRC_URI="https://github.com/Yubico/yubikey-personalization/archive/v${PV}.tar.gz -> ${P}.tar.gz"
HOMEPAGE="https://github.com/Yubico/yubikey-personalization"
KEYWORDS="amd64 x86"
SLOT="0"
LICENSE="BSD-2"
IUSE="static-libs consolekit"
RDEPEND="
>=sys-auth/libyubikey-1.6
virtual/libusb:1"
DEPEND="${RDEPEND}
dev-ruby/asciidoctor
virtual/pkgconfig"
RDEPEND="${RDEPEND}
consolekit? ( sys-auth/consolekit[acl] )"
S="${WORKDIR}/yubikey-personalization-${PV}"
DOCS=( doc/. AUTHORS NEWS README )
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
--libdir=/usr/$(get_libdir) \
--localstatedir=/var \
$(use_enable static-libs static)
}
src_install() {
default
use consolekit && udev_dorules *.rules
}
|