fa3a17c064
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Categories P-S. CR: D422 Approved by: portmgr (bapt)
28 lines
601 B
Makefile
28 lines
601 B
Makefile
# Created by: Pankov Pavel <pankov_p@mail.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= vnccrack
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://files.randombit.net/vnccrack/
|
|
DISTNAME= VNCcrack-${PORTVERSION}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= pankov_p@mail.ru
|
|
COMMENT= Fast offline password cracker for VNC passwords
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_OPENSSL= yes
|
|
|
|
SUB_FILES+= pkg-message
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/vnccrack ${STAGEDIR}${PREFIX}/bin
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/readme.txt ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|