blob: f60a32d4f4fdd0b5b28b8fa9b07bb01858c6bb9b (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/ssh-multiadd/ssh-multiadd-1.3.1.ebuild,v 1.11 2002/10/04 03:58:19 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="adds multiple ssh keys to the ssh authentication agent. These may use the same passphrase. Unlike ssh-add, if any of the keys use the same passphrase, you will only need to enter each unique passphrase once, and keys that are already added will not be prompted for again."
SRC_URI="http://www.azstarnet.com/~donut/programs/ssh-multiadd/${P}.tar.gz"
HOMEPAGE="http://www.azstarnet.com/~donut/programs/index_s.html#ssh-multiadd"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc sparc64"
DEPEND=">=dev-lang/python-2.0-r3
X? ( >=net-misc/x11-ssh-askpass-1.2.2 )"
#lamer: pulling x11-ssh-askpass in pulls in X, which is bad for servers
#so I added the X? ( ) -- drobbins
src_unpack() {
unpack ${A}
cd ${S}
patch -p0 < ${FILESDIR}/ssh-multiadd-1.3.1.diff
}
src_install () {
dobin ssh-multiadd
doman ssh-multiadd.1
dodoc COPYING ChangeLog README todo
}
|