blob: fcfb8c7d9c12b83c50ac54b60cc5af18defe6bfa (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ssh-installkeys/ssh-installkeys-1.3.ebuild,v 1.4 2004/06/25 00:13:31 agriffis Exp $
DESCRIPTION="This script tries to export ssh public keys to a specified site. It will walk you through generating key pairs if it doesn't find any to export."
HOMEPAGE="http://www.catb.org/~esr/${PN}/"
SRC_URI="http://www.catb.org/~esr/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
RDEPEND=">=virtual/python-2.3"
DEPEND="${RDEPEND}"
src_compile() {
einfo "Nothing to compile"
}
src_install() {
doman ${PN}.1
dodoc COPYING README ${PN}.spec ${PN}.xml
dobin ${PN}
}
|