From owner-svn-ports-all@FreeBSD.ORG Thu Nov 29 19:30:25 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ADB0AE9F; Thu, 29 Nov 2012 19:30:25 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 81F928FC14; Thu, 29 Nov 2012 19:30:25 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qATJUPdE042712; Thu, 29 Nov 2012 19:30:25 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qATJUPD6042708; Thu, 29 Nov 2012 19:30:25 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201211291930.qATJUPD6042708@svn.freebsd.org> From: Pawel Pekala Date: Thu, 29 Nov 2012 19:30:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r307974 - in head/security: . regripper X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Nov 2012 19:30:26 -0000 Author: pawel Date: Thu Nov 29 19:30:25 2012 New Revision: 307974 URL: http://svnweb.freebsd.org/changeset/ports/307974 Log: RegRipper is an open source tool, written in Perl, for extracting/parsing information (keys, values, data) from the Registry and presenting it for analysis. WWW: http://code.google.com/p/regripper/ PR: ports/172899 Submitted by: antoine@FreeBSD.org Feature safe: yes Added: head/security/regripper/ head/security/regripper/Makefile (contents, props changed) head/security/regripper/distinfo (contents, props changed) head/security/regripper/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Thu Nov 29 18:49:27 2012 (r307973) +++ head/security/Makefile Thu Nov 29 19:30:25 2012 (r307974) @@ -807,6 +807,7 @@ SUBDIR += razorback-virusTotal SUBDIR += razorback-yaraNugget SUBDIR += rdigest + SUBDIR += regripper SUBDIR += retranslator SUBDIR += revelation SUBDIR += rkhunter Added: head/security/regripper/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/regripper/Makefile Thu Nov 29 19:30:25 2012 (r307974) @@ -0,0 +1,33 @@ +# Created by: antoine@FreeBSD.org +# $FreeBSD$ + +PORTNAME= regripper +DISTVERSION= 2.5 +CATEGORIES= security +MASTER_SITES= GOOGLE_CODE +DISTNAME= rrv${DISTVERSION} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Tool for registry analysis in forensics examinations + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/license.txt + +RUN_DEPEND= p5-Parse-Win32Registry>=0:${PORTSDIR}/devel/p5-Parse-Win32Registry + +USE_ZIP= yes +NO_WRKSUBDIR= yes +USE_DOS2UNIX= yes +NO_BUILD= yes +USE_PERL5_RUN= yes +PLIST_FILES= bin/rip.pl + +post-patch: + ${REINPLACE_CMD} -e 's|#! c:\\perl\\bin\\perl.exe|#!${PERL}| ; \ + s|plugindir = $$str|plugindir = "${DATADIR}"| ; \ + s|require "plugins\\\\|require "${DATADIR}plugins/|' ${WRKSRC}/rip.pl + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/rip.pl ${PREFIX}/bin + +.include Added: head/security/regripper/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/regripper/distinfo Thu Nov 29 19:30:25 2012 (r307974) @@ -0,0 +1,2 @@ +SHA256 (rrv2.5.zip) = f279137439a6c3777eeb6bdd63c4eb7ca4ba1ab25568c05f9d5dd009d03721a4 +SIZE (rrv2.5.zip) = 3004592 Added: head/security/regripper/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/regripper/pkg-descr Thu Nov 29 19:30:25 2012 (r307974) @@ -0,0 +1,5 @@ +RegRipper is an open source tool, written in Perl, for extracting/parsing +information (keys, values, data) from the Registry and presenting it for +analysis. + +WWW: http://code.google.com/p/regripper/