blob: 6c9b3e792c259806a6abb504c9c8d83017b4e73a (
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
|
# Copyright 2002 Arcady Genkin <agenkin@gentoo.org>.
# Distributed under the terms of the GNU General Public License v2.
# $Header: /var/cvsroot/gentoo-x86/app-crypt/keylookup/keylookup-2.2.ebuild,v 1.2 2003/03/11 21:11:44 seemant Exp $
DESCRIPTION="A tool to fetch PGP keys from keyservers."
HOMEPAGE="http://www.palfrader.org/keylookup/"
LICENSE="GPL-2"
RDEPEND="dev-lang/perl
app-crypt/gnupg"
SLOT="0"
KEYWORDS="x86"
IUSE=""
SRC_URI="http://www.palfrader.org/keylookup/files/${P}.tar.gz"
S=${WORKDIR}/${P}
src_compile() {
true
}
src_install() {
dobin keylookup
doman keylookup.1
dodoc COPYING ChangeLog NEWS TODO
}
|