freebsd-ports/security/metasploit/Makefile
Pav Lucistnik 6d4c843eda - Update to 2.7
PR:		ports/104908
Submitted by:	Yonatan <onatan@gmail.com> (maintainer)
2006-11-01 08:50:31 +00:00

50 lines
1.2 KiB
Makefile

# Ports collection makefile for: metasploit
# Date created: 18 Nov 2004
# Whom: Yonatan <onatan@gmail.com>
#
# $FreeBSD$
#
PORTNAME= metasploit
PORTVERSION= 2.7
CATEGORIES= security
MASTER_SITES= http://www.metasploit.org/tools/
DISTNAME= framework-${PORTVERSION}
MAINTAINER= onatan@gmail.com
COMMENT= Exploit-Framework for Penetration-Testing
RUN_DEPENDS= ${SITE_PERL}/mach/Term/ReadLine/Gnu.pm:${PORTSDIR}/devel/p5-ReadLine-Gnu \
${SITE_PERL}/mach/Net/SSLeay.pm:${PORTSDIR}/security/p5-Net-SSLeay \
${LOCALBASE}/bin/nasm:${PORTSDIR}/devel/nasm \
${LOCALBASE}/bin/svn:${PORTSDIR}/devel/subversion
CONFLICTS= metasploit-3*
NO_BUILD= yes
USE_PERL5_RUN= yes
REINPLACE_ARGS= -i ''
SCRIPTS= msfcli msfconsole msfelfscan msfencode msflogdump msfpayload \
msfpescan msfupdate msfweb msfdldebug
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500600
IGNORE= requires perl version 5.6.0 or higher
.endif
post-patch:
.for f in ${SCRIPTS}
@${REINPLACE_CMD} -e 's|/usr/bin/perl|${PERL}|' ${WRKSRC}/${f}
.endfor
@${REINPLACE_CMD} -e 's|framework-2.x|${DATADIR}|' ${WRKSRC}/msfupdate
do-install:
${MKDIR} ${DATADIR}
${CP} -Rp ${WRKSRC}/ ${DATADIR}
.for f in ${SCRIPTS}
${LN} -s ${DATADIR}/${f} ${PREFIX}/bin
.endfor
.include <bsd.port.post.mk>