blob: 75d31939498bdff0a3c1e4c06d6f62f294d9c5bb (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit optfeature
DESCRIPTION="A command line interface to KeePass database files"
HOMEPAGE="http://kpcli.sourceforge.net"
SRC_URI="https://downloads.sourceforge.net/project/kpcli/${P}.pl"
LICENSE="|| ( Artistic GPL-1+ )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="dev-perl/Clone
dev-perl/Crypt-Rijndael
dev-perl/File-KeePass
dev-perl/Math-Random-ISAAC
dev-perl/Sort-Naturally
dev-perl/Sub-Install
dev-perl/TermReadKey
dev-perl/Term-ReadLine-Gnu
dev-perl/Term-ShellUI"
src_unpack() {
mkdir "${S}" || die
cp "${DISTDIR}/${P}.pl" "${S}/${PN}" || die
}
src_compile() { :; }
src_install() {
dobin kpcli
}
pkg_postinst() {
# Not packaged in Gentoo yet, but we'd be interested in:
# Data::Password, Data::Password::passwdqc, Crypt::PWSafe3, (Authen::OATH (& Convert::Base32)).
optfeature "X clipboard support" "dev-perl/Capture-Tiny dev-perl/Clipboard"
}
|