inception: DMA over Firewire manipulation tool, initial ebuild

This commit is contained in:
Anton Bolshakov 2012-05-09 23:55:46 +00:00
parent f76780a4e4
commit a620106894
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,2 @@
DIST inception-0.1.3.zip 933779 RMD160 ce378b92df6b72748550ed44150b18db4410d27d SHA1 def62515e0b947dea852b6861ff1a18f38f93464 SHA256 d7af5db9b68ada1f9ff4f80642fe93024b8f7650ab2390b2444a8c5ef29bcdf0
EBUILD inception-0.1.3.ebuild 926 RMD160 a2ad74d68fc0ed5eaf9ef166317bdf8d7ee1ff78 SHA1 49591889c19f8ecd1da33f4543d1453d5c3f97cf SHA256 f942122970bdba8f1311bc3d5d68dd166f04cb22a506ebbc0d0e2c7dc0dd99d2

View file

@ -0,0 +1,42 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
PYTHON_DEPEND="3"
inherit python
DESCRIPTION="Firewire physical memory manipulation tool exploiting IEEE 1394 SBP-2 DMA"
HOMEPAGE="http://www.breaknenter.org/projects/inception/"
SRC_URI="https://github.com/carmaa/${PN}/zipball/${PV} -> ${P}.zip"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="app-forensics/libforensic1394"
QA_PRESTRIPPED="/usr/share/inception/samples/ubuntu-11.10-x86-0xbaf.bin"
S="${WORKDIR}"/"carmaa-${PN}-5e0426e"
#check for FIREWIRE_OHCI module
pkg_setup() {
python_set_active_version 3
python_pkg_setup
}
src_install () {
dodoc README.md samples/SAMPLES.txt
rm -r licenses samples
rm README.md bt5-setup.sh setup.py
dodir /usr/share/"${PN}"/
cp -R * "${D}"/usr/share/"${PN}"/
dosym /usr/share/"${PN}"/incept /usr/sbin/incept
}