diff options
author | kris <kris@FreeBSD.org> | 2000-09-09 04:02:48 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-09-09 04:02:48 +0800 |
commit | 163f1e368b0432184a6338ebde9ced9ddf9e94b8 (patch) | |
tree | be47c565d3feb1209838fda50a1f5fad90e78528 /security/scanssh | |
parent | e8500b76cd7362a81ec1375c224414583649b4db (diff) | |
download | freebsd-ports-gnome-163f1e368b0432184a6338ebde9ced9ddf9e94b8.tar.gz freebsd-ports-gnome-163f1e368b0432184a6338ebde9ced9ddf9e94b8.tar.zst freebsd-ports-gnome-163f1e368b0432184a6338ebde9ced9ddf9e94b8.zip |
scanssh 1.2 is a utility which scans a subnet and reports on the
installed versions of SSH it finds.
Diffstat (limited to 'security/scanssh')
-rw-r--r-- | security/scanssh/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/security/scanssh/Makefile b/security/scanssh/Makefile new file mode 100644 index 000000000000..eb08e329be31 --- /dev/null +++ b/security/scanssh/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: scanssh +# Date created: 09 September 2000 +# Whom: kris@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= scanssh +PORTVERSION= 1.2 +CATEGORIES= security net +MASTER_SITES= http://www.monkey.org/~provos/ +DISTNAME= scanssh + +MAINTAINER= kris@FreeBSD.org + +GNU_CONFIGURE= YES + +MAN1= scanssh.1 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/scanssh ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/scanssh.1 ${PREFIX}/man/man1 + ${MKDIR} ${PREFIX}/share/scanssh/ + ${TOUCH} ${PREFIX}/share/scanssh/exclude.list + +.include <bsd.port.mk> |