diff options
author | Ben Lutgens <blutgens@gentoo.org> | 2001-06-04 19:37:29 +0000 |
---|---|---|
committer | Ben Lutgens <blutgens@gentoo.org> | 2001-06-04 19:37:29 +0000 |
commit | df36d300559ff0cbd418660296ff1e1a7bb76d71 (patch) | |
tree | 3d0ee6fe2d126f70bf32beb9ea33e8a0c071a835 /app-crypt/ssh-multiadd | |
parent | this is not my day. (diff) | |
download | gentoo-2-df36d300559ff0cbd418660296ff1e1a7bb76d71.tar.gz gentoo-2-df36d300559ff0cbd418660296ff1e1a7bb76d71.tar.bz2 gentoo-2-df36d300559ff0cbd418660296ff1e1a7bb76d71.zip |
A menubased front end to mkisofs / cdrecord, and a python app to add multiple
keys to your ssh-agent xsession. Also touched up the xlockmore build again.
added xglock and xmlock install.
Diffstat (limited to 'app-crypt/ssh-multiadd')
-rw-r--r-- | app-crypt/ssh-multiadd/files/ssh-multiadd-1.3.1.diff | 8 | ||||
-rw-r--r-- | app-crypt/ssh-multiadd/ssh-multiadd-1.3.1.ebuild | 29 |
2 files changed, 37 insertions, 0 deletions
diff --git a/app-crypt/ssh-multiadd/files/ssh-multiadd-1.3.1.diff b/app-crypt/ssh-multiadd/files/ssh-multiadd-1.3.1.diff new file mode 100644 index 000000000000..0cbad5fc8ebe --- /dev/null +++ b/app-crypt/ssh-multiadd/files/ssh-multiadd-1.3.1.diff @@ -0,0 +1,8 @@ +--- ssh-multiadd.old Mon Jun 4 14:22:05 2001 ++++ ssh-multiadd Mon Jun 4 14:22:21 2001 +@@ -1,4 +1,4 @@ +-#! /usr/bin/python2 ++#! /usr/bin/python + # + # ssh-multiadd - add multiple ssh keys, maybe some with the same passphrase + # Copyright (C) 2001 Matthew Mueller <donut@azstarnet.com> diff --git a/app-crypt/ssh-multiadd/ssh-multiadd-1.3.1.ebuild b/app-crypt/ssh-multiadd/ssh-multiadd-1.3.1.ebuild new file mode 100644 index 000000000000..3e92fa3479e7 --- /dev/null +++ b/app-crypt/ssh-multiadd/ssh-multiadd-1.3.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Your Name <your email> +# $Header: /var/cvsroot/gentoo-x86/app-crypt/ssh-multiadd/ssh-multiadd-1.3.1.ebuild,v 1.1 2001/06/04 19:37:29 blutgens Exp $ + +#P= +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="" +SRC_URI="http://www.azstarnet.com/~donut/programs/ssh-multiadd/${A}" +HOMEPAGE="http://www.azstarnet.com/~donut/programs/" + +DEPEND="" + +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 + +} + |