mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-20 13:51:00 +02:00
30 lines
610 B
Bash
30 lines
610 B
Bash
# 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"
|
|
}
|