diff options
author | 2014-11-20 07:31:56 +0000 | |
---|---|---|
committer | 2014-11-20 07:31:56 +0000 | |
commit | f0d0ab12c6d245b7471f8ccdb684e8be1989083a (patch) | |
tree | ab1904494780ffa392baf758175d7513c79ae98d /sys-auth | |
parent | Initial import, ebuild by me (diff) | |
download | gentoo-2-f0d0ab12c6d245b7471f8ccdb684e8be1989083a.tar.gz gentoo-2-f0d0ab12c6d245b7471f8ccdb684e8be1989083a.tar.bz2 gentoo-2-f0d0ab12c6d245b7471f8ccdb684e8be1989083a.zip |
sys-auth/ykpers: Version Bump
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sys-auth')
-rw-r--r-- | sys-auth/ykpers/ChangeLog | 7 | ||||
-rw-r--r-- | sys-auth/ykpers/ykpers-1.16.1.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/sys-auth/ykpers/ChangeLog b/sys-auth/ykpers/ChangeLog index ef517ded2b59..3f39a6b7c997 100644 --- a/sys-auth/ykpers/ChangeLog +++ b/sys-auth/ykpers/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-auth/ykpers # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/ykpers/ChangeLog,v 1.13 2014/10/06 07:44:32 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/ykpers/ChangeLog,v 1.14 2014/11/20 07:31:56 jlec Exp $ + +*ykpers-1.16.1 (20 Nov 2014) + + 20 Nov 2014; Justin Lecher <jlec@gentoo.org> +ykpers-1.16.1.ebuild: + Version Bump *ykpers-1.16.0 (06 Oct 2014) diff --git a/sys-auth/ykpers/ykpers-1.16.1.ebuild b/sys-auth/ykpers/ykpers-1.16.1.ebuild new file mode 100644 index 000000000000..19b95eb34ca3 --- /dev/null +++ b/sys-auth/ykpers/ykpers-1.16.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/ykpers/ykpers-1.16.1.ebuild,v 1.1 2014/11/20 07:31:56 jlec Exp $ + +EAPI=5 + +inherit autotools-utils 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_install() { + DOCS=( doc/. AUTHORS ChangeLog NEWS README ) + autotools-utils_src_install + + use consolekit && udev_dorules *.rules +} |