diff options
Diffstat (limited to 'dns')
-rw-r--r-- | dns/Makefile | 1 | ||||
-rw-r--r-- | dns/sshfp/Makefile | 33 | ||||
-rw-r--r-- | dns/sshfp/distinfo | 3 | ||||
-rw-r--r-- | dns/sshfp/pkg-descr | 6 |
4 files changed, 43 insertions, 0 deletions
diff --git a/dns/Makefile b/dns/Makefile index 02e78e74113b..d3a5dc13da4c 100644 --- a/dns/Makefile +++ b/dns/Makefile @@ -100,6 +100,7 @@ SUBDIR += skadns SUBDIR += sleuth SUBDIR += sqldjbdns + SUBDIR += sshfp SUBDIR += staticcharge SUBDIR += tinystats SUBDIR += totd diff --git a/dns/sshfp/Makefile b/dns/sshfp/Makefile new file mode 100644 index 000000000000..2c2c00111b7c --- /dev/null +++ b/dns/sshfp/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: sshfp +# Date created: 5 Oct 2006 +# Whom: Emanuel Haupt <ehaupt@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= sshfp +PORTVERSION= 1.1.1 +CATEGORIES= dns security +MASTER_SITES= ftp://ftp.xelerance.com/sshfp/ \ + http://critical.ch/distfiles/ \ + http://energy.critical.ch/distfiles/ + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= Generate SSHFP DNS records from knownhosts files or ssh-keyscan + +RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/dns/__init__.py:${PORTSDIR}/dns/py-dnspython + +NO_BUILD= yes +USE_PYTHON= 2.3+ + +MAN1= sshfp.1 +PLIST_FILES= bin/sshfp + +post-patch: + @${REINPLACE_CMD} -e '1s|.*|#!${PYTHON_CMD}|' ${WRKSRC}/${PORTNAME} + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/dns/sshfp/distinfo b/dns/sshfp/distinfo new file mode 100644 index 000000000000..008417cc9a55 --- /dev/null +++ b/dns/sshfp/distinfo @@ -0,0 +1,3 @@ +MD5 (sshfp-1.1.1.tar.gz) = 5424ed55c50d2038934940737680e8da +SHA256 (sshfp-1.1.1.tar.gz) = 43bbc40ed5e868181f2660cc1fa2640bac5771821198acf69a8dee3c7713ab61 +SIZE (sshfp-1.1.1.tar.gz) = 14049 diff --git a/dns/sshfp/pkg-descr b/dns/sshfp/pkg-descr new file mode 100644 index 000000000000..d4c85175f4ef --- /dev/null +++ b/dns/sshfp/pkg-descr @@ -0,0 +1,6 @@ +sshfp generates DNS SSHFP records from SSH public keys. sshfp can take public +keys from a knownhosts file or from scanning the host's sshd daemon. The ssh +client can use these SSHFP records if you set "VerifyHostKeyDNS yes" in the file +/etc/ssh/ssh_config. + +WWW: http://freshmeat.net/projects/sshfp/ |