7a30c6fbeb
Ftpmap scans remote FTP servers to indentify what software and what versions they are running. It uses program-specific fingerprints to discover the name of the software even when banners have been changed or removed, or when some features have been disabled. IPv6 is fully supported. PR: ports/48899 Submitted by: Sergei Kolobov <sergei@kolobov.com>
26 lines
549 B
Makefile
26 lines
549 B
Makefile
# New ports collection makefile for: ftpmap
|
|
# Date created: 01 Nov 2002
|
|
# Whom: Sergei Kolobov <sergei@kolobov.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ftpmap
|
|
PORTVERSION= 0.4
|
|
CATEGORIES= security ftp
|
|
MASTER_SITES= ftp://ftp.pureftpd.org/pub/pure-ftpd/ftpmap/
|
|
|
|
MAINTAINER= sergei@kolobov.com
|
|
COMMENT= Identify remote FTP server software by fingerprinting
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
DOCS= AUTHORS NEWS README THANKS
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|