mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
29 lines
530 B
Bash
29 lines
530 B
Bash
# Copyright 1999-2022 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="A perl script to enumerate SNMP table dumper"
|
|
HOMEPAGE="http://packetstormsecurity.org"
|
|
SRC_URI="https://dl.packetstormsecurity.net/UNIX/scanners/${PN}.zip"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="dev-perl/Net-SNMP"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
src_configure() {
|
|
eapply "${FILESDIR}"/${PN}-gentoo.patch
|
|
default
|
|
}
|
|
|
|
src_install() {
|
|
dodoc *.txt
|
|
newsbin ${PN}.pl ${PN}
|
|
}
|