svn commit: r355856 - in head/security: . py-dfvfs

Antoine Brodin antoine at FreeBSD.org
Fri May 30 15:10:35 UTC 2014


Author: antoine
Date: Fri May 30 15:10:34 2014
New Revision: 355856
URL: http://svnweb.freebsd.org/changeset/ports/355856
QAT: https://qat.redports.org/buildarchive/r355856/

Log:
  New port: securiry/py-dfvfs
  dfVFS, or Digital Forensics Virtual File System, provides read-only access to
  file-system objects from various storage media types and file formats.  The goal
  of dfVFS is to provide a generic interface for accessing file-system objects,
  for which it uses several back-ends that provide the actual implementation of
  the various storage media types, volume systems and file systems.
  WWW: https://code.google.com/p/dfvfs/

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

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Fri May 30 14:58:45 2014	(r355855)
+++ head/security/Makefile	Fri May 30 15:10:34 2014	(r355856)
@@ -751,6 +751,7 @@
     SUBDIR += py-cryptkit
     SUBDIR += py-cryptography
     SUBDIR += py-cybox
+    SUBDIR += py-dfvfs
     SUBDIR += py-ecdsa
     SUBDIR += py-ed25519ll
     SUBDIR += py-fail2ban

Added: head/security/py-dfvfs/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-dfvfs/Makefile	Fri May 30 15:10:34 2014	(r355856)
@@ -0,0 +1,38 @@
+# Created by: Antoine Brodin <antoine at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	dfvfs
+PORTVERSION=	20140529
+CATEGORIES=	security devel python
+MASTER_SITES=	https://googledrive.com/host/0B3fBvzttpiiSZTI3MWV6di1fRDg/ \
+		LOCAL/antoine
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	antoine at FreeBSD.org
+COMMENT=	Digital Forensics Virtual File System
+
+LICENSE=	APACHE20
+
+RUN_DEPENDS=	libewf>=0:${PORTSDIR}/devel/libewf \
+		libqcow>=a:${PORTSDIR}/devel/libqcow \
+		libsmdev>=a:${PORTSDIR}/devel/libsmdev \
+		libvhdi>=e:${PORTSDIR}/devel/libvhdi \
+		libvmdk>=e:${PORTSDIR}/devel/libvmdk \
+		libvshadow>=0:${PORTSDIR}/devel/libvshadow \
+		${PYTHON_PKGNAMEPREFIX}construct>=0:${PORTSDIR}/devel/py-construct \
+		${PYTHON_PKGNAMEPREFIX}protobuf>=0:${PORTSDIR}/devel/py-protobuf \
+		${PYTHON_PKGNAMEPREFIX}pytsk>=0:${PORTSDIR}/sysutils/py-pytsk
+
+USE_PYTHON=	2
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
+
+PORTDOCS=	ACKNOWLEDGEMENTS AUTHORS
+
+OPTIONS_DEFINE=	DOCS
+
+post-install:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>

Added: head/security/py-dfvfs/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-dfvfs/distinfo	Fri May 30 15:10:34 2014	(r355856)
@@ -0,0 +1,2 @@
+SHA256 (dfvfs-20140529.tar.gz) = 0176e2c4c6296a32af929f0759a8b1636d6fac5e6aa639dc28fca2b4a861f60c
+SIZE (dfvfs-20140529.tar.gz) = 420782

Added: head/security/py-dfvfs/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-dfvfs/pkg-descr	Fri May 30 15:10:34 2014	(r355856)
@@ -0,0 +1,7 @@
+dfVFS, or Digital Forensics Virtual File System, provides read-only access to
+file-system objects from various storage media types and file formats.  The goal
+of dfVFS is to provide a generic interface for accessing file-system objects,
+for which it uses several back-ends that provide the actual implementation of
+the various storage media types, volume systems and file systems.
+
+WWW: https://code.google.com/p/dfvfs/


More information about the svn-ports-all mailing list