volatility: New ebuild for volatility 1.3 and 1.4.

This commit is contained in:
ikelos 2011-06-26 16:31:30 +00:00
parent 92c47ec784
commit bda0451392
3 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,2 @@
EBUILD volatility-1.3.1.ebuild 611 RMD160 fe3e544963320e625edda5bf63ce51071c42458f SHA1 e368b7726551d2e8b219ad610b05e2fce51fc277 SHA256 51caff936519cf6ae2f5c48c8f350f25a3d4a5f55f74fe44ad76cc0e5cc2d920
EBUILD volatility-1.4_rc1.ebuild 613 RMD160 56c1e510bbac4db8b138d4f698ed683d526c1f4e SHA1 36c9dcf2df808a4bd4a6d6063b0967390fef3139 SHA256 33073a9cb256acd3a8b411ba711c0393fe6785db0ae25e643a27711a09540db7

View file

@ -0,0 +1,31 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
PYTHON_DEPEND="2:2.4"
inherit distutils subversion
ESVN_REPO_URI="http://volatility.googlecode.com/svn/tags/${PN/v/V}-${PV}/"
DESCRIPTION="Forensic tool for analyzing volatile memory"
HOMEPAGE="http://code.google.com/p/volatility/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=""
RDEPEND=""
src_install() {
distutils_src_install
insinto /usr/share/${PN}
doins volatility v*.py
make_wrapper volatility "python /usr/share/${PN}/volatility"
}

View file

@ -0,0 +1,31 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
PYTHON_DEPEND="2:2.6"
inherit distutils subversion
ESVN_REPO_URI="http://volatility.googlecode.com/svn/branches/${P/v/V}"
DESCRIPTION="Forensic tool for analyzing volatile memory"
HOMEPAGE="http://code.google.com/p/volatility/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=""
RDEPEND=""
src_install() {
distutils_src_install
mkdir ${D}/usr/share/${PN}
mv ${D}/usr/plugins ${D}/usr/share/${PN}
mv ${D}/usr/bin/vol.py ${D}/usr/bin/volatility
}