mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-22 06:41:01 +02:00
volatility: fork again for easier pycrypto migration
This commit is contained in:
parent
df4b820f27
commit
0da67459ca
2 changed files with 36 additions and 0 deletions
1
app-forensics/volatility/Manifest
Normal file
1
app-forensics/volatility/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST volatility-2.6.zip 4179806 SHA256 5b73050d72bf94870ffce22843f03d4b0b7764011dec29ef1a0a5b1b46cf9295 SHA512 1c0b86f270188ba48a6a0ff1d7ad70bde500d0f720d7e1b9d76b6b9498368ae3eb29c5b1c7e7dd76ec9480b83b1e484b4130b4ced7458e4e03ca61fe7d13220f WHIRLPOOL b3432b0725f49c132029102d1f7ba099dffc6c4339ccb5bfaf108d3cf67e3ceb7b221b8e00cc641941af189b74991a51c3fb109819ff8abeb9e8414a49cac6f8
|
||||
35
app-forensics/volatility/volatility-2.6-r1.ebuild
Normal file
35
app-forensics/volatility/volatility-2.6-r1.ebuild
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Framework for analyzing volatile memory"
|
||||
HOMEPAGE="http://www.volatilityfoundation.org/"
|
||||
SRC_URI="http://downloads.volatilityfoundation.org/releases/${PV}/${P}.zip"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
S=${WORKDIR}/${PN}-master
|
||||
|
||||
DEPEND="app-arch/unzip"
|
||||
RDEPEND=">=dev-libs/distorm64-3[${PYTHON_USEDEP}]
|
||||
dev-libs/libpcre
|
||||
|| (
|
||||
dev-python/pycryptodome[${PYTHON_USEDEP}]
|
||||
dev-python/pycrypto[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
src_install() {
|
||||
distutils-r1_src_install
|
||||
mkdir "${D}/usr/share/${PN}"
|
||||
mv "${D}/usr/contrib/plugins" "${D}/usr/share/${PN}/"
|
||||
rmdir "${D}/usr/contrib"
|
||||
mv "${D}/usr/tools" "${D}/usr/share/${PN}/"
|
||||
dosym vol.py /usr/bin/volatility
|
||||
}
|
||||
Loading…
Reference in a new issue