f6e061a93a
* Added a "--local" option for removing the ${HOSTNAME} from the various files that keychain creates. Handy for non-NFS users. * Using the Bourne shell "type" builtin rather than using the external "which" command. Should make things a lot more robust and slightly faster. * Solaris' "which" command outputs "no lockfile in..." to stdout rather than stderr. A one-line fix (test the error condition) has been applied. * lockfile settings tweak * If you stop making progress providing valid passphrases, it's three strikes and you're out. * Some private keys can't be "ssh-keygen -l -f"'d; this patch causes keychain to look for the corresponding public key if the private key doesn't work. Thanks Constantine! * CYAN color misdefined; fixed. * A "quiet mode" (--quiet) fix; I missed an "echo". * Missed another "kill -9"; it's now gone.
26 lines
685 B
Makefile
26 lines
685 B
Makefile
# $NetBSD: Makefile,v 1.5 2002/01/03 14:29:53 martti Exp $
|
|
|
|
DISTNAME= keychain-1.8
|
|
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/
|
|
COMMENT= Nice ssh-agent front-end
|
|
|
|
DEPENDS= psmisc-[0-9]*:../../sysutils/psmisc
|
|
|
|
.if !exists(/usr/bin/ssh-agent)
|
|
DEPENDS+= openssh-[0-9]*:../../security/openssh
|
|
.endif
|
|
|
|
NO_BUILD= # defined
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/keychain ${PREFIX}/bin/
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/keychain
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/keychain
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|