diff options
author | will <will@FreeBSD.org> | 2001-05-20 02:40:30 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2001-05-20 02:40:30 +0000 |
commit | baa3a586d6d2f3c09c472445b2578bc5918edae5 (patch) | |
tree | 058ea485e92950abc5c407a0d2770325089b907e /security/ssh-multiadd/Makefile | |
parent | 19cf99d69436a4bd604b10048916fe04a80f7359 (diff) | |
download | FreeBSD-ports-baa3a586d6d2f3c09c472445b2578bc5918edae5.zip FreeBSD-ports-baa3a586d6d2f3c09c472445b2578bc5918edae5.tar.gz |
Add ssh-multiadd 1.3, a tool to add multiple ssh keys to the
authentication agent.
PR: 26975
Submitted by: Pete Fritchman <petef@databits.net>
Diffstat (limited to 'security/ssh-multiadd/Makefile')
-rw-r--r-- | security/ssh-multiadd/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/security/ssh-multiadd/Makefile b/security/ssh-multiadd/Makefile new file mode 100644 index 0000000..9563618 --- /dev/null +++ b/security/ssh-multiadd/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: ssh-multiadd +# Date created: 29 April 2001 +# Whom: Pete Fritchman <petef@databits.net> +# +# $FreeBSD$ +# + +PORTNAME= ssh-multiadd +PORTVERSION= 1.3 +CATEGORIES= security +MASTER_SITES= http://www.azstarnet.com/~donut/programs/ssh-multiadd/ + +MAINTAINER= petef@databits.net + +USE_PYTHON= yes +NO_BUILD= yes +MAN1= ssh-multiadd.1 + +post-patch: + ${PERL} -pi -e 's!/usr/bin/python2!${PYTHON_CMD}!; \ + s!#break!break!' ${WRKSRC}/ssh-multiadd + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/ssh-multiadd ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/ssh-multiadd.1 ${PREFIX}/man/man1 + +.include <bsd.port.mk> |