blob: cdecb56e2eef40dc914e2276181dd10939fbdefa (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
DESCRIPTION="Collection of tools that allow for gpg keyrings to be maintained using changesets"
HOMEPAGE="http://git.kitenet.net/?p=jetring.git;a=summary"
SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="app-crypt/gnupg"
RDEPEND="
${DEPEND}
dev-lang/perl
"
S="${WORKDIR}"/${PN}
src_install() {
default
insinto /usr/share/${PN}/
doins -r example
doman ${PN}*.[0-9]
}
|