38 lines
915 B
Bash
38 lines
915 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-auth/ykpers/ykpers-1.14.1.ebuild,v 1.1 2013/10/28 13:50:08 zerochaos Exp $
|
|
|
|
EAPI=5
|
|
|
|
inherit eutils udev
|
|
|
|
DESCRIPTION="Library and tool for personalization of Yubico's YubiKey"
|
|
SRC_URI="http://yubico.github.io/yubikey-personalization/releases/${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}
|
|
virtual/pkgconfig"
|
|
RDEPEND="${RDEPEND}
|
|
consolekit? ( sys-auth/consolekit[acl] )"
|
|
|
|
src_configure() {
|
|
econf $(use_enable static-libs static)
|
|
}
|
|
|
|
DOCS=( AUTHORS ChangeLog NEWS README )
|
|
|
|
src_install() {
|
|
default
|
|
dodoc doc/*
|
|
prune_libtool_files
|
|
|
|
use consolekit && \
|
|
udev_dorules 70-yubikey.rules
|
|
}
|