mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-05 19:11:57 +02:00
volatility: New ebuild for volatility 1.3 and 1.4.
This commit is contained in:
parent
92c47ec784
commit
bda0451392
3 changed files with 64 additions and 0 deletions
2
app-forensics/volatility/Manifest
Normal file
2
app-forensics/volatility/Manifest
Normal 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
|
||||
31
app-forensics/volatility/volatility-1.3.1.ebuild
Normal file
31
app-forensics/volatility/volatility-1.3.1.ebuild
Normal 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"
|
||||
}
|
||||
|
||||
31
app-forensics/volatility/volatility-1.4_rc1.ebuild
Normal file
31
app-forensics/volatility/volatility-1.4_rc1.ebuild
Normal 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
|
||||
}
|
||||
|
||||
Loading…
Reference in a new issue