1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-28 10:08:24 +00:00
freebsd-ports/security/py-volatility/Makefile
Sofian Brabez 2cfaf1eaf0 The Volatility Framework is a completely open collection of tools, implemented
in Python under the GNU General Public License, for the extraction of digital
artifacts from volatile memory (RAM) samples.

WWW: http://code.google.com/p/volatility

PR:		ports/172910
Submitted by:	antoine@FreeBSD.org
Feature safe:	yes
2012-11-29 20:51:45 +00:00

36 lines
876 B
Makefile

# Created by: antoine@FreeBSD.org
# $FreeBSD$
PORTNAME= volatility
PORTVERSION= 2.2
CATEGORIES= security python
MASTER_SITES= GOOGLE_CODE
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= antoine@FreeBSD.org
COMMENT= An advanced memory forensics framework
LICENSE= GPLv2
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/Crypto/__init__.py:${PORTSDIR}/security/py-pycrypto \
${PYTHON_SITELIBDIR}/distorm3/__init__.py:${PORTSDIR}/devel/py-distorm \
${PYTHON_SITELIBDIR}/yara.so:${PORTSDIR}/security/py-yara
OPTIONS_DEFINE= DOCS
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
PORTDOCS= AUTHORS.txt CHANGELOG.txt CREDITS.txt LEGAL.txt LICENSE.txt README.txt
DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
.endif
.include <bsd.port.mk>