diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-05-28 12:33:31 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-05-28 12:33:31 +0000 |
commit | 6be9e74459add3301352f3a1030edc0b1811f19e (patch) | |
tree | 7eeb048eeeb49c61e1222d099ccfb04b85792f58 /app-forensics/scalpel | |
parent | Marking setuptools-0.6.15 ppc for bug 364413 (diff) | |
download | gentoo-2-6be9e74459add3301352f3a1030edc0b1811f19e.tar.gz gentoo-2-6be9e74459add3301352f3a1030edc0b1811f19e.tar.bz2 gentoo-2-6be9e74459add3301352f3a1030edc0b1811f19e.zip |
Initial import.
(Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
Diffstat (limited to 'app-forensics/scalpel')
-rw-r--r-- | app-forensics/scalpel/ChangeLog | 10 | ||||
-rw-r--r-- | app-forensics/scalpel/metadata.xml | 12 | ||||
-rw-r--r-- | app-forensics/scalpel/scalpel-2.0.ebuild | 31 |
3 files changed, 53 insertions, 0 deletions
diff --git a/app-forensics/scalpel/ChangeLog b/app-forensics/scalpel/ChangeLog new file mode 100644 index 000000000000..7ab0a993be6c --- /dev/null +++ b/app-forensics/scalpel/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-forensics/scalpel +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/scalpel/ChangeLog,v 1.1 2011/05/28 12:33:31 radhermit Exp $ + +*scalpel-2.0 (28 May 2011) + + 28 May 2011; Tim Harder <radhermit@gentoo.org> +scalpel-2.0.ebuild, + +metadata.xml: + Initial import. + diff --git a/app-forensics/scalpel/metadata.xml b/app-forensics/scalpel/metadata.xml new file mode 100644 index 000000000000..4a106d1643b3 --- /dev/null +++ b/app-forensics/scalpel/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>forensics</herd> + <longdescription lang="en"> + Scalpel is a fast file carver that reads a database of header and footer + definitions and extracts matching files or data fragments from a set of image + files or raw device files. Scalpel is filesystem-independent and will carve + files from FATx, NTFS, ext2/3, HFS+, or raw partitions. It is useful for both + digital forensics investigation and file recovery. + </longdescription> +</pkgmetadata> diff --git a/app-forensics/scalpel/scalpel-2.0.ebuild b/app-forensics/scalpel/scalpel-2.0.ebuild new file mode 100644 index 000000000000..a21f2449a3e3 --- /dev/null +++ b/app-forensics/scalpel/scalpel-2.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/scalpel/scalpel-2.0.ebuild,v 1.1 2011/05/28 12:33:31 radhermit Exp $ + +EAPI=4 + +DESCRIPTION="A high performance file carver" +HOMEPAGE="http://www.digitalforensicssolutions.com/Scalpel/" +SRC_URI="http://www.digitalforensicssolutions.com/Scalpel/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-libs/tre" +DEPEND="${RDEPEND}" + +DOCS=(Changelog README) + +src_prepare() { + # Set the default config file location + sed -i -e "s:scalpel.conf:/etc/\0:" src/scalpel.h || die "sed failed" +} + +src_install() { + default + + insinto /etc + doins scalpel.conf +} |