mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
Changed capitalization of Net-SSH-Perl (see: https://github.com/gentoo/gentoo/blob/master/profiles/updates/1Q-2016#L29 )
37 lines
1.1 KiB
Bash
37 lines
1.1 KiB
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=2
|
|
|
|
DESCRIPTION="Cisco mass scanning, fingerprinting, and exploitation tool"
|
|
HOMEPAGE="http://www.arhont.com/en/category/resources/tools-utilities/"
|
|
SRC_URI="http://www.arhont.com/en/wp-content/uploads/2010/01/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="dev-perl/Net-Telnet
|
|
dev-perl/Net-SSH-Perl
|
|
dev-perl/Net-SNMP
|
|
dev-perl/Net-SSLeay"
|
|
|
|
src_prepare() {
|
|
sed -i 's|torch.conf|/etc/torch.conf|g' cisco-torch.pl || die
|
|
sed -i 's|DIR, "include"|DIR, "/usr/share/cisco-torch/include"|' cisco-torch.pl || die
|
|
sed -i 's|include/$in|$in|' cisco-torch.pl || die
|
|
sed -i "25i\use lib '/usr/share/cisco-torch/include/';" cisco-torch.pl|| die
|
|
}
|
|
|
|
src_install() {
|
|
insinto /usr/share/${PN}
|
|
doins -r include tftproot brutefile.txt community.txt fingerprint.db \
|
|
password.txt tfingerprint.db users.txt || die
|
|
insinto /etc
|
|
doins torch.conf || die
|
|
dobin cisco-torch.pl || die
|
|
dodoc README.txt TODO CHANGELOG.txt
|
|
}
|