32 lines
673 B
Bash
32 lines
673 B
Bash
|
# Copyright 1999-2017 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Id$
|
||
|
|
||
|
EAPI=6
|
||
|
|
||
|
PYTHON_COMPAT=( python2_7 )
|
||
|
|
||
|
inherit distutils-r1
|
||
|
|
||
|
DESCRIPTION="a command line client to manage the privacyIDEA server"
|
||
|
HOMEPAGE="https://www.privacyidea.org/"
|
||
|
SRC_URI="https://github.com/privacyidea/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
|
||
|
LICENSE="GPL-3"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="amd64 x86"
|
||
|
IUSE=""
|
||
|
|
||
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
||
|
dev-python/sphinx"
|
||
|
RDEPEND="dev-python/requests
|
||
|
dev-python/pycrypto
|
||
|
dev-python/pyusb
|
||
|
dev-python/python-yubico"
|
||
|
|
||
|
src_prepare(){
|
||
|
rm -rf tests
|
||
|
emake man
|
||
|
eapply_user
|
||
|
}
|