diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-04-22 02:23:38 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-04-22 02:23:38 +0000 |
commit | c3c185d4e1afbdfbda8fdfd516ae47f384f69739 (patch) | |
tree | daa6f2f173599edc49a2779c005c8c3474d6cac7 /net-misc | |
parent | gcc-3.x patch #42970 and clean up CFLAGS (diff) | |
download | gentoo-2-c3c185d4e1afbdfbda8fdfd516ae47f384f69739.tar.gz gentoo-2-c3c185d4e1afbdfbda8fdfd516ae47f384f69739.tar.bz2 gentoo-2-c3c185d4e1afbdfbda8fdfd516ae47f384f69739.zip |
Rewrote most of the code, organized into functions, fixed speed issues involving ps, fixed compatibility issues for various UNIXes, hopefully didn't introduce too many bugs. This version has a --quick option (for me) and a --timeout option (for carpaski).
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/keychain/ChangeLog | 13 | ||||
-rw-r--r-- | net-misc/keychain/files/digest-keychain-2.2.0 | 1 | ||||
-rw-r--r-- | net-misc/keychain/keychain-2.2.0.ebuild | 24 | ||||
-rw-r--r-- | net-misc/keychain/metadata.xml | 4 |
4 files changed, 41 insertions, 1 deletions
diff --git a/net-misc/keychain/ChangeLog b/net-misc/keychain/ChangeLog index 29b4656f213b..a10a42277d79 100644 --- a/net-misc/keychain/ChangeLog +++ b/net-misc/keychain/ChangeLog @@ -1,6 +1,17 @@ # ChangeLog for net-misc/keychain # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/keychain/ChangeLog,v 1.18 2004/04/17 03:33:17 randy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/keychain/ChangeLog,v 1.19 2004/04/22 02:23:38 agriffis Exp $ + +*keychain-2.2.0 (21 Apr 2004) + + 21 Apr 2004; Aron Griffis <agriffis@gentoo.org> +keychain-2.2.0.ebuild: + Rewrote most of the code, organized into functions, fixed speed issues + involving ps, fixed compatibility issues for various UNIXes, hopefully + didn't introduce too many bugs. This version has a --quick option + (for me) and a --timeout option (for carpaski). + + 19 Apr 2004; Mike Frysinger <vapier@gentoo.org> keychain-2.0.3.ebuild: + Marked 2.0.3 stable on all arches 16 Apr 2004; Michael McCabe <randy@gentoo.org> keychain-2.0.3.ebuild: added s390 keywords diff --git a/net-misc/keychain/files/digest-keychain-2.2.0 b/net-misc/keychain/files/digest-keychain-2.2.0 new file mode 100644 index 000000000000..db4d7cafe2ab --- /dev/null +++ b/net-misc/keychain/files/digest-keychain-2.2.0 @@ -0,0 +1 @@ +MD5 423fc69592f048985d265b2ef927dce4 keychain-2.2.0.tar.bz2 21685 diff --git a/net-misc/keychain/keychain-2.2.0.ebuild b/net-misc/keychain/keychain-2.2.0.ebuild new file mode 100644 index 000000000000..b7be705af755 --- /dev/null +++ b/net-misc/keychain/keychain-2.2.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/keychain/keychain-2.2.0.ebuild,v 1.1 2004/04/22 02:23:38 agriffis Exp $ + +DESCRIPTION="ssh-agent manager" +HOMEPAGE="http://www.gentoo.org/proj/en/keychain.xml" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +DEPEND="virtual/glibc" +RDEPEND="${DEPEND} + app-shells/bash + sys-apps/coreutils + || ( net-misc/openssh net-misc/ssh )" + +src_install() { + dobin keychain || die "dobin failed" + dodoc ChangeLog COPYING keychain.pod README || die "dodoc failed" + doman keychain.1 || die "doman failed" +} diff --git a/net-misc/keychain/metadata.xml b/net-misc/keychain/metadata.xml index 878e1be2ee06..3330c8ff54e6 100644 --- a/net-misc/keychain/metadata.xml +++ b/net-misc/keychain/metadata.xml @@ -2,4 +2,8 @@ <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <herd>keychain</herd> +<maintainer> + <email>agriffis@gentoo.org</email> + <name>Aron Griffis</name> +</maintainer> </pkgmetadata> |