freebsd-ports/security/pkcrack/Makefile

41 lines
941 B
Makefile
Raw Normal View History

# New ports collection makefile for: pkcrack
# Date created: 27 Jul 2005
# Whom: Emanuel Haupt <ehaupt@critical.ch>
#
# $FreeBSD$
#
PORTNAME= pkcrack
PORTVERSION= 1.2.2
CATEGORIES= security
2006-06-01 14:13:54 +02:00
MASTER_SITES= http://www.unix-ag.uni-kl.de/~conrad/krypto/pkcrack/ \
2008-03-27 20:27:34 +01:00
CRITICAL
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= A utility for breaking pkzip encryption
USE_GMAKE= yes
2009-03-27 10:53:36 +01:00
MAKE_JOBS_SAFE= yes
WRKSRC= ${WRKDIR}/${DISTNAME}/src
PLIST_FILES= bin/pkextract bin/pkfindkey bin/pkmakekey bin/pkcrack bin/zipdecrypt
PORTDOCS= README pkzip.ps.gz
do-install:
.for f in pkcrack zipdecrypt
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin
.endfor
# these file names are too generic
.for f in extract findkey makekey
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin/pk${f}
.endfor
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/doc/${f} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>