blob: 460fd4696d773555d5fffae887ccbb1e2c6515fd (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/ykneo-ccid-tools/ykneo-ccid-tools-0.0.0.ebuild,v 1.1 2013/08/12 15:39:06 wschlich Exp $
EAPI=5
inherit eutils udev
DESCRIPTION="Library and tool for personalization of Yubico's YubiKey"
SRC_URI="http://yubico.github.io/ykneo-ccid-tools/releases/${P}.tar.gz"
HOMEPAGE="https://github.com/Yubico/ykneo-ccid-tools"
KEYWORDS="~amd64 ~x86"
SLOT="0"
LICENSE="BSD-2"
IUSE=""
RDEPEND="sys-apps/pcsc-lite"
DEPEND="${RDEPEND}
sys-apps/help2man
dev-util/gengetopt"
DOCS=( AUTHORS NEWS README )
src_prepare() {
epatch "${FILESDIR}/${P}-string.patch"
}
|