summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authormartti <martti@pkgsrc.org>2003-01-18 05:58:58 +0000
committermartti <martti@pkgsrc.org>2003-01-18 05:58:58 +0000
commit344173b2726adcce9155e5c07986f0f15776a6e7 (patch)
treef7793e013ede6f029dce542044b38d280fc4982e /security
parent6b74d54fae0e02a144a7a73fd378ae6d3d0352a9 (diff)
downloadpkgsrc-344173b2726adcce9155e5c07986f0f15776a6e7.tar.gz
Updated keychain to 2.0.2
NOTE: The .ssh-agent-* files are now in the ~/.keychain/ directory. Use something like this in your dot files: [ -r ${HOME}/.ssh-agent-`hostname` ] && . ${HOME}/.ssh-agent-`hostname` [ -r ${HOME}/.keychain/`hostname`-sh ] && . ${HOME}/.keychain/`hostname`-sh
Diffstat (limited to 'security')
-rw-r--r--security/keychain/Makefile6
-rw-r--r--security/keychain/distinfo8
-rw-r--r--security/keychain/patches/patch-aa43
3 files changed, 24 insertions, 33 deletions
diff --git a/security/keychain/Makefile b/security/keychain/Makefile
index 92dc67ae68d..a207d24c64a 100644
--- a/security/keychain/Makefile
+++ b/security/keychain/Makefile
@@ -1,13 +1,13 @@
-# $NetBSD: Makefile,v 1.6 2002/04/10 17:52:08 schmonz Exp $
+# $NetBSD: Makefile,v 1.7 2003/01/18 05:58:58 martti Exp $
-DISTNAME= keychain-1.9
+DISTNAME= keychain-2.0.2
PKGNAME= ${DISTNAME}
CATEGORIES= security
MASTER_SITES= http://www.ibiblio.org/gentoo/distfiles/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= martti@netbsd.org
-HOMEPAGE= http://www.gentoo.org/projects/keychain/
+HOMEPAGE= http://www.gentoo.org/proj/en/keychain.xml
COMMENT= Nice ssh-agent front-end
.if !exists(/usr/bin/ssh-agent)
diff --git a/security/keychain/distinfo b/security/keychain/distinfo
index bfe6fdbd555..ffd17704302 100644
--- a/security/keychain/distinfo
+++ b/security/keychain/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.5 2002/04/10 17:52:08 schmonz Exp $
+$NetBSD: distinfo,v 1.6 2003/01/18 05:58:58 martti Exp $
-SHA1 (keychain-1.9.tar.bz2) = d5d85fa8f7ab573ff99114ddad1927d6db1f4636
-Size (keychain-1.9.tar.bz2) = 8616 bytes
-SHA1 (patch-aa) = 455a2a109b8d7030e6e62f89e977a77e9f7d7c54
+SHA1 (keychain-2.0.2.tar.bz2) = fb32a11dad1d9f11d5a75c49d07288eef33c4909
+Size (keychain-2.0.2.tar.bz2) = 9650 bytes
+SHA1 (patch-aa) = a44280f7071b934223ca1a534d66bd975f8f6057
diff --git a/security/keychain/patches/patch-aa b/security/keychain/patches/patch-aa
index 3ed863fd448..c5b5ca2cfc8 100644
--- a/security/keychain/patches/patch-aa
+++ b/security/keychain/patches/patch-aa
@@ -1,32 +1,23 @@
-$NetBSD: patch-aa,v 1.5 2002/04/10 17:52:09 schmonz Exp $
+$NetBSD: patch-aa,v 1.6 2003/01/18 05:58:59 martti Exp $
---- keychain.orig Mon Mar 4 13:51:58 2002
-+++ keychain
-@@ -6,7 +6,7 @@
-
- version=1.9
-
--trap "" INT || { echo "$0: warning: trapping signal 2 instead of INT" 1>&2; trap "" 2; }
-+trap "" 2
- PATH="/sbin:/usr/sbin:${PATH}:/usr/ucb"; export PATH;
- KEYCHAIN_KEYS=""
-
-@@ -65,6 +65,9 @@
- CYAN="\033[36;01m"
- fi
-
-+# Don't use colors in NetBSD
-+unset BLUE GREEN OFF CYAN
-+
- quiet_mode="no"
- if [ -n "`echo ${@} | grep '\-\-quiet'`" ] || [ -n "`echo $* | grep '\-q'`" ] ;
+--- keychain.orig Tue Aug 27 01:23:19 2002
++++ keychain Fri Jan 17 21:34:08 2003
+@@ -165,6 +165,9 @@
+ elif [ -n "`echo $myuname | grep HP-UX`" ]
then
-@@ -259,7 +262,7 @@
+ hpux="yes"
++elif [ -n "`echo $myuname | grep NetBSD`" ]
++then
++ netbsd="yes"
fi
- #now that keys are potentially cleared, it's safe to be aborted by ^C
--trap - INT || trap - 2
-+trap - 2
+ # Query local host for SSH application, presently supporting only
+@@ -178,7 +181,7 @@
- if [ -n "`echo $* | grep '\-\-noask'`" ]
+ # Avoid trapping on signal names with Cygwin.
+ trapint="INT"
+-if [ "$cygwin" = "yes" ]
++if [ "$cygwin" = "yes" -o "$netbsd" = "yes" ]
then
+ trapint=2
+ fi