pentoo-overlay/app-exploits/routersploit/routersploit-9999.ebuild
2018-06-15 07:53:17 +08:00

64 lines
1.6 KiB
Bash

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_6 )
inherit python-single-r1
# distutils-r1
if [[ ${PV} == "9999" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/threat9/routersploit.git"
KEYWORDS=""
else
SRC_URI="https://github.com/threat9/routersploit/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
fi
DESCRIPTION="An open-source exploitation framework dedicated to embedded devices"
HOMEPAGE="https://github.com/threat9/routersploit/wiki"
LICENSE="BSD"
SLOT="0"
IUSE="doc desktopicons bluetooth"
DEPEND=">=dev-python/future-0.16.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.9.1[${PYTHON_USEDEP}]
>=dev-python/paramiko-1.16.0[${PYTHON_USEDEP}]
>=dev-python/pysnmp-4.3.2[${PYTHON_USEDEP}]
>=dev-python/pycryptodome-2.6.1[${PYTHON_USEDEP}]
bluetooth? ( dev-python/bluepy )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${P}"
src_prepare() {
#do not compile
rm -f Makefile
eapply_user
}
src_install() {
dodir /opt/${PN}
insinto /opt/${PN}
doins -r routersploit/ rsf.py
fperms +x /opt/${PN}/rsf.py
dosym "${EPREFIX}"/opt/${PN}/rsf.py /usr/bin/rsf
if use doc; then
einstalldocs /usr/share/doc/${PN}/
dodoc -r /{README.md,LICENSE}
fi
#FIXME: convert to desktop.eclass
if use desktopicons; then
dodir /usr/share/icons/${PN}/
cp ${FILES}/{routersploit.png,routersploit.svg} /usr/share/icons/${PN}/
dodir /usr/share/applications/${PN}/
cp ${FILES}*.desktop /usr/share/applications/${PN}/
fixperms +r +x /usr/share/applications/${PN}/*.desktop
fi
}