Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 601442 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-1 / +48 lines)
Line  Link Here
0
-- orig/kpcli-3.1.ebuild       1970-01-01 01:00:00.000000000 +0100
0
++ new/kpcli-3.1.ebuild        2016-12-02 13:12:36.071550062 +0100
Line 0 Link Here
1
# Copyright 1999-2016 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
3
# $Id$
4
5
EAPI=5
6
7
DESCRIPTION="A command line interface to KeePass database files"
8
HOMEPAGE="http://kpcli.sourceforge.net"
9
SRC_URI="http://downloads.sourceforge.net/project/kpcli/${P}.pl"
10
11
LICENSE="|| ( Artistic GPL-1+ )"
12
SLOT="0"
13
KEYWORDS="~amd64 ~x86"
14
IUSE="X"
15
16
DEPEND=""
17
RDEPEND="
18
       dev-lang/perl
19
       dev-perl/Clone
20
       dev-perl/Crypt-Rijndael
21
       dev-perl/TermReadKey
22
       dev-perl/Sort-Naturally
23
       dev-perl/Term-ShellUI
24
       >=dev-perl/File-KeePass-0.30.0
25
       virtual/perl-File-Spec
26
       virtual/perl-Getopt-Long
27
       virtual/perl-Digest-MD5
28
       virtual/perl-Digest-SHA
29
       virtual/perl-Data-Dumper
30
       virtual/perl-Term-ANSIColor
31
       virtual/perl-Carp
32
       X? (
33
               dev-perl/Clipboard
34
               dev-perl/Capture-Tiny
35
       )
36
"
37
38
src_unpack() {
39
       mkdir "${S}" || die
40
       cp "${DISTDIR}/${P}.pl" "${S}/${PN}" || die
41
}
42
43
src_compile() { :; }
44
45
src_install() {
46
       dobin kpcli
47
}

Return to bug 601442