svn commit: r317245 - in head/security: . rcracki_mt

Antoine Brodin antoine at FreeBSD.org
Fri May 3 20:42:52 UTC 2013


Author: antoine
Date: Fri May  3 20:42:50 2013
New Revision: 317245
URL: http://svnweb.freebsd.org/changeset/ports/317245

Log:
  New port: rcracki_mt
  Rainbow table based crack tool
  WWW: http://www.freerainbowtables.com
  
  PR:		ports/177575
  Submitted by:	Olivier Cochard-Labbe
  Approved by:	eadler (mentor)

Added:
  head/security/rcracki_mt/
  head/security/rcracki_mt/Makefile   (contents, props changed)
  head/security/rcracki_mt/distinfo   (contents, props changed)
  head/security/rcracki_mt/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Fri May  3 20:42:46 2013	(r317244)
+++ head/security/Makefile	Fri May  3 20:42:50 2013	(r317245)
@@ -826,6 +826,7 @@
     SUBDIR += razorback-syslogNugget
     SUBDIR += razorback-virusTotal
     SUBDIR += razorback-yaraNugget
+    SUBDIR += rcracki_mt
     SUBDIR += rdigest
     SUBDIR += regripper
     SUBDIR += regripperplugins

Added: head/security/rcracki_mt/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/rcracki_mt/Makefile	Fri May  3 20:42:50 2013	(r317245)
@@ -0,0 +1,41 @@
+# $FreeBSD$
+
+PORTNAME=	rcracki_mt
+PORTVERSION=	0.7.0
+CATEGORIES=	security
+MASTER_SITES=	SF/rcracki/rcracki_mt/rcracki_mt_${PORTVERSION}
+DISTNAME=	${PORTNAME}_${PORTVERSION}_src
+EXTRACT_SUFX=	.7z
+
+MAINTAINER=	olivier at cochard.me
+COMMENT=	Rainbow table based crack tool
+
+LICENSE=	GPLv2
+
+EXTRACT_DEPENDS=7z:${PORTSDIR}/archivers/p7zip
+
+WRKSRC=		${WRKDIR}/${DISTNAME}/${PORTNAME}
+
+USE_GMAKE=	yes
+EXTRACT_CMD=	${LOCALBASE}/bin/7z
+EXTRACT_BEFORE_ARGS=x -o${WRKDIR}
+EXTRACT_AFTER_ARGS=
+
+PLIST_FILES=	bin/${PORTNAME}
+PORTDOCS=	ChangeLog.txt README.txt
+
+post-patch:
+	@${REINPLACE_CMD} -e 's,CC = g++,CXX ?= g++, ; s,CFLAGS =,CXXFLAGS +=, ; \
+		s,-lpthread,${PTHREAD_LIBS}, ; s,CC,CXX, ; s,CFLAGS,CXXFLAGS,' \
+		${WRKSRC}/Makefile
+
+.include <bsd.port.options.mk>
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+.if ${PORT_OPTIONS:MDOCS}
+	@${MKDIR} ${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
+.endif
+
+.include <bsd.port.mk>

Added: head/security/rcracki_mt/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/rcracki_mt/distinfo	Fri May  3 20:42:50 2013	(r317245)
@@ -0,0 +1,2 @@
+SHA256 (rcracki_mt_0.7.0_src.7z) = 904c73d040fa91b0871907fc772da977b273579ee42036ab2596f3d3a644a000
+SIZE (rcracki_mt_0.7.0_src.7z) = 171634

Added: head/security/rcracki_mt/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/rcracki_mt/pkg-descr	Fri May  3 20:42:50 2013	(r317245)
@@ -0,0 +1,4 @@
+Modified version of rcrack which supports hybrid and indexed tables.
+In addition to that, it also adds multi-core support.
+
+WWW: http://www.freerainbowtables.com


More information about the svn-ports-all mailing list