mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-21 14:21:02 +02:00
36 lines
790 B
Bash
36 lines
790 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python3_{2,3} )
|
|
inherit linux-info python-r1
|
|
|
|
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}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="app-forensics/libforensic1394"
|
|
|
|
pkg_setup() {
|
|
CONFIG_CHECK=~FIREWIRE_OHCI
|
|
linux-info_pkg_setup
|
|
}
|
|
|
|
src_install () {
|
|
dodoc README.md
|
|
|
|
rm -r licenses test
|
|
rm README.md setup.py
|
|
|
|
dodir /usr/share/"${PN}"/
|
|
cp -R * "${D}"/usr/share/"${PN}"/
|
|
dosym /usr/share/"${PN}"/incept /usr/sbin/inception
|
|
}
|