blob: 06befd824408106538c365de23a10111b7a10ad2 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit udev
DESCRIPTION="YubiKey NEO CCID Manager C Library"
HOMEPAGE="https://developers.yubico.com/libykneomgr/"
SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="kernel_linux"
DEPEND="sys-apps/pcsc-lite
dev-libs/libzip"
RDEPEND="${DEPEND}
>=app-crypt/ccid-1.4.18[usb]"
BDEPEND="virtual/pkgconfig"
src_configure() {
econf \
--with-backend=pcsc \
--disable-static
}
|