pentoo-overlay/sys-devel/peda/peda-9999.ebuild
2020-02-11 15:51:33 +03:00

59 lines
1.3 KiB
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
inherit eutils python-single-r1
DESCRIPTION="Python Exploit Development Assistance for GDB"
HOMEPAGE="https://github.com/longld/peda"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/longld/peda"
else
HASH_COMMIT="f76c34d5e0c1f8e5603d5f03a794d096507c402e"
SRC_URI="https://github.com/longld/peda/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${PN}-${HASH_COMMIT}"
fi
LICENSE="CC-BY-NC-SA-3.0"
SLOT="0"
RDEPEND="
$(python_gen_cond_dep 'dev-python/six[${PYTHON_MULTI_USEDEP}]')
sys-devel/gdb[python]"
pkg_setup() {
python-single-r1_pkg_setup
}
src_install() {
insinto "/usr/share/${PN}"
doins -r lib/ *.py
python_optimize "${D}/usr/share/${PN}"
cat > "${D}/usr/share/${PN}/gdb_peda" <<-_EOF_ || die
# Use this commad for installing:
# gdb -x /usr/share/${PN}/gdb_peda <program>
source /usr/share/${PN}/peda.py
_EOF_
make_wrapper "gdb-peda" \
"gdb -x /usr/share/${PN}/gdb_peda"
dodoc README{,.md}
}
pkg_postinst() {
einfo "\nFor using put the command:"
einfo " gdb -x /usr/share/${PN}/gdb_peda <program>"
einfo "or"
einfo " gdb-peda <program>\n"
}