KeePassX with YubiKey support

This commit is contained in:
Jörg Deckert 2014-12-14 20:13:24 +01:00
parent de25783c0e
commit 25ce02498b
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1 @@
EBUILD keepassx-2.0_alpha20140908.ebuild 1120 SHA256 4fcf59070802144970f4c7be826c0252d94c1940c8a5696873f82732b198341a SHA512 74670de2ee4ca1c76b6b6eaa35bbb50dad24d394cb7c4ab9b549d6bf8e51a84192ec374eb62fb46bb4e0705ced967d1f992b8ac55564c4f2e17c15f6b2f67080 WHIRLPOOL 2b1dbc3d8b37d4ee43e8cd5f0c61064fb4a0d63bc1a92a09409b80475992266fa6a6dd61dba0128e8fb095b92b015478b935a3a076c40a93d4ed5b97b8a1b47e

View File

@ -0,0 +1,43 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/keepassx/keepassx-2.0_alpha6.ebuild,v 1.1 2014/04/15 12:02:27 polynomial-c Exp $
EAPI=5
inherit git-2 cmake-utils
EGIT_REPO_URI="https://github.com/kylemanna/keepassx"
##EGIT_PROJECT="xbmc-pvr-addons${PVRADDONS_EGIT_PROJECT:-}.git"
EGIT_COMMIT="b7fd29b8aa5c2df1ce413baffe5c40d2b7c146d2"
EGIT_BRANCH="yubikey"
DESCRIPTION="Qt password manager compatible with its Win32 and Pocket PC versions"
HOMEPAGE="http://www.keepassx.org/"
LICENSE="|| ( GPL-2 GPL-3 ) BSD GPL-2 LGPL-2.1 LGPL-3+ CC0-1.0 public-domain || ( LGPL-2.1 GPL-3 )"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="test yubikey"
DEPEND="
dev-libs/libgcrypt:0=
dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
dev-qt/qttest:4
sys-libs/zlib
x11-libs/libX11
x11-libs/libXtst
yubikey? ( sys-auth/libyubikey
sys-auth/ykpers )
"
RDEPEND="${DEPEND}"
DOCS=(CHANGELOG)
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with test TESTS)
)
cmake-utils_src_configure
}