mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
cutter: new tool, issue #251
This commit is contained in:
parent
cdafd20e19
commit
f9856cb044
4 changed files with 36 additions and 1 deletions
1
dev-util/cutter/Manifest
Normal file
1
dev-util/cutter/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST cutter-1.1.tar.gz 635945 SHA256 ed1be7778f6a733343d4628a0ba2598f6c3f521e08c6d45289a58c2313e2297b SHA512 81e855dfd5796aaeb28411ba59f14954a7961b5bc6e1f116cfa54e3e69d6187b2d54cb9610087040c7da18228943154914416f1a258e179288980b57d1d018c2 WHIRLPOOL 70f1ef3ce0cb7e669003383573457ac24fb2940666b52d2e9ee0a2bcfa00a2c9870d537f07113e8c0a539c6dc775ce6502b0817e9cd0ff1ae8e689ee022aecc2
|
||||
32
dev-util/cutter/cutter-1.1.ebuild
Normal file
32
dev-util/cutter/cutter-1.1.ebuild
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit qmake-utils
|
||||
|
||||
DESCRIPTION="A Qt and C++ GUI for radare2 reverse engineering framework"
|
||||
HOMEPAGE="https://github.com/radareorg/cutter"
|
||||
SRC_URI="https://github.com/radareorg/cutter/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
KEYWORDS="~x86 ~arm ~amd64"
|
||||
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtdbus:5
|
||||
>=dev-util/radare2-2.2.0"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
S="${WORKDIR}/${P}"/src
|
||||
|
||||
src_configure() {
|
||||
eqmake5 PREFIX=/usr cutter.pro
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake INSTALL_ROOT="${D}" install
|
||||
}
|
||||
|
|
@ -18,6 +18,7 @@ PDEPEND="hardened? ( sys-apps/paxctl )
|
|||
!minipentoo? (
|
||||
!hardened? ( sys-devel/prelink )
|
||||
!arm? ( dev-lang/nasm
|
||||
dev-util/cutter
|
||||
dev-util/radare2
|
||||
dev-util/edb-debugger
|
||||
)
|
||||
|
|
@ -16,7 +16,8 @@ dev-util/intel-ocl-sdk
|
|||
~dev-util/bokken-1.8
|
||||
~dev-util/pyew-2.0
|
||||
=dev-util/valabind-1.4*
|
||||
=dev-util/radare2-2.1*
|
||||
=dev-util/radare2-2.2*
|
||||
=dev-util/cutter-1*
|
||||
|
||||
#virtualbox
|
||||
~dev-util/kbuild-0.1.9998_pre20131130
|
||||
|
|
|
|||
Loading…
Reference in a new issue