blob: 124c3167bb57f692494d0c561f5d8c1f73a33373 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=0
DESCRIPTION="GPG Keyring Manager to handle large GPG keyrings more easily"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SRC_URI="mirror://gentoo/${PN}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha hppa amd64"
IUSE=""
DEPEND="dev-lang/perl
>=app-crypt/gnupg-1.2.1"
src_unpack() {
mkdir ${P}
cp "${DISTDIR}"/${PN} "${S}" || die
}
src_compile() {
pod2man "${S}"/${PN} >"${S}/"${PN}.1
pod2html "${S}"/${PN} >"${S}"/${PN}.html
}
src_install() {
dobin ${PN} || die
doman ${PN}.1
dohtml ${PN}.html
}
|