From owner-svn-ports-all@FreeBSD.ORG Thu Dec 20 17:13:53 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 2465214D; Thu, 20 Dec 2012 17:13:53 +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 0AD328FC0C; Thu, 20 Dec 2012 17:13:53 +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 qBKHDqGr087277; Thu, 20 Dec 2012 17:13:52 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBKHDqTP087270; Thu, 20 Dec 2012 17:13:52 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201212201713.qBKHDqTP087270@svn.freebsd.org> From: Pawel Pekala Date: Thu, 20 Dec 2012 17:13:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309317 - in head/security: . rifiuti2 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, 20 Dec 2012 17:13:53 -0000 Author: pawel Date: Thu Dec 20 17:13:51 2012 New Revision: 309317 URL: http://svnweb.freebsd.org/changeset/ports/309317 Log: rifiuti2 is a rewrite of rifiuti, a great tool from Foundstone folks for analyzing Windows Recycle Bin INFO2 file. But since rifiuti (last updated 2004) is restricted to English version of Windows (fail to analyze any non-latin character), thus this rewrite. WWW: http://code.google.com/p/rifiuti2/ PR: ports/174031 Submitted by: antoine@FreeBSD.org Added: head/security/rifiuti2/ head/security/rifiuti2/Makefile (contents, props changed) head/security/rifiuti2/distinfo (contents, props changed) head/security/rifiuti2/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Thu Dec 20 16:57:07 2012 (r309316) +++ head/security/Makefile Thu Dec 20 17:13:51 2012 (r309317) @@ -815,6 +815,7 @@ SUBDIR += regripperplugins SUBDIR += retranslator SUBDIR += revelation + SUBDIR += rifiuti2 SUBDIR += rkhunter SUBDIR += ruby-acl SUBDIR += ruby-camellia Added: head/security/rifiuti2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rifiuti2/Makefile Thu Dec 20 17:13:51 2012 (r309317) @@ -0,0 +1,42 @@ +# Created by: antoine@FreeBSD.org +# $FreeBSD$ + +PORTNAME= rifiuti2 +DISTVERSION= 0.5.1 +CATEGORIES= security +MASTER_SITES= GOOGLE_CODE + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Tool for analyzing Windows recycle bin + +LICENSE= BSD + +LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre + +GNU_CONFIGURE= yes +USE_PKGCONFIG= build +USE_GETTEXT= yes +USE_ICONV= yes +USE_GNOME= glib20 + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +PLIST_FILES= bin/rifiuti bin/rifiuti-vista + +MAN1= rifiuti.1 +MLINKS= rifiuti.1 rifiuti-vista.1 + +OPTIONS_DEFINE= DOCS + +PORTDOCS= AUTHORS COPYING ChangeLog NEWS README THANKS TODO + +.include + +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} +.endif + +.include Added: head/security/rifiuti2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rifiuti2/distinfo Thu Dec 20 17:13:51 2012 (r309317) @@ -0,0 +1,2 @@ +SHA256 (rifiuti2-0.5.1.tar.gz) = b8db7d9ff442d71794256a97103134200b286c19134f2fe30506f58035a380b2 +SIZE (rifiuti2-0.5.1.tar.gz) = 109598 Added: head/security/rifiuti2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rifiuti2/pkg-descr Thu Dec 20 17:13:51 2012 (r309317) @@ -0,0 +1,6 @@ +rifiuti2 is a rewrite of rifiuti, a great tool from Foundstone folks +for analyzing Windows Recycle Bin INFO2 file. But since rifiuti +(last updated 2004) is restricted to English version of Windows +(fail to analyze any non-latin character), thus this rewrite. + +WWW: http://code.google.com/p/rifiuti2/