mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-20 05:41:12 +02:00
responder: 2.3.4.0 bump
This commit is contained in:
parent
a730eb31ce
commit
a4c40b0a8c
2 changed files with 39 additions and 0 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST responder-2.3.3.9.tar.gz 816316 BLAKE2B 647d6d67c476516cb8f0cbe47578fd21c8a46acb62f9a428337b4a7b74d6c235fd264d40408029c4beb997066401a57b3864b74ddb2be031a3879d613b4fa369 SHA512 7fde478f51ce437216c0ab430773f46a8bbd842abc9271d33e269fb5db15aa88a5447a7acb69a3be6d62b52cceda37e01d26cbc449ae0f5909508efe585ad83c
|
||||
DIST responder-2.3.4.0.tar.gz 818031 BLAKE2B bd5b3d298a300b72541fd96175e4add7c304d22f8cb704e8b381e403bba95aaf39e95a79090008d95a5c02a1965d27888c7de0cc5984a7bebff6b5a81bffdc19 SHA512 0f9fb4c1aae12fa71d41b72a14f2962df1d8a1039c73c4588fce180f85aace98d4f0babe865a8e1743ff7e370452c86de2ca264fcb7022341b17e6095cac7961
|
||||
|
|
|
|||
38
net-analyzer/responder/responder-2.3.4.0.ebuild
Normal file
38
net-analyzer/responder/responder-2.3.4.0.ebuild
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
inherit python-single-r1
|
||||
|
||||
DESCRIPTION="LLMNR, NBT-NS and MDNS poisoner, HTTP/SMB/MSSQL/FTP/LDAP rogue authentication"
|
||||
HOMEPAGE="https://github.com/lgandx/Responder"
|
||||
SRC_URI="https://github.com/lgandx/Responder/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
|
||||
S="${WORKDIR}/Responder-${PV}"
|
||||
|
||||
src_install() {
|
||||
dodir /usr/$(get_libdir)/${PN}
|
||||
cp -R * "${ED}"/usr/$(get_libdir)/${PN} || die "Copy files failed"
|
||||
|
||||
python_fix_shebang "${ED}"/usr/$(get_libdir)/${PN}
|
||||
|
||||
# dosym "${EPREFIX}"/usr/$(get_libdir)/${PN}/Responder.py /usr/sbin/responder
|
||||
dosym "${EPREFIX}"/usr/$(get_libdir)/${PN}/Report.py /usr/bin/responder_report
|
||||
dosym "${EPREFIX}"/usr/$(get_libdir)/${PN}/DumpHash.py /usr/bin/responder_dumphash
|
||||
|
||||
newsbin - responder <<-EOF
|
||||
#!/bin/sh
|
||||
cd /usr/lib/responder
|
||||
python2 ./Responder.py \${@}
|
||||
EOF
|
||||
}
|
||||
Loading…
Reference in a new issue