Date: Thu, 20 Dec 2012 17:13:52 +0000 (UTC) From: Pawel Pekala <pawel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309317 - in head/security: . rifiuti2 Message-ID: <201212201713.qBKHDqTP087270@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.options.mk> + +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} +.endif + +.include <bsd.port.mk> 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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212201713.qBKHDqTP087270>