mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-02 19:50:51 +02:00
24 lines
604 B
Bash
24 lines
604 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=5
|
|
|
|
DESCRIPTION="A NSE vulnerability scanner which uses an offline version of different vulnerability databases"
|
|
HOMEPAGE="http://www.scip.ch/"
|
|
SRC_URI="http://www.computec.ch/mruef/software/nmap_nse_vulscan-${PV}.tar.gz"
|
|
#udpated db: http://www.scip.ch/vuldb/scipvuldb.csv
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86 arm"
|
|
|
|
DEPEND=""
|
|
RDEPEND="net-analyzer/nmap[lua]"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
src_install() {
|
|
insinto /usr/share/nmap/scripts/vulscan
|
|
doins -r * || die "install failed"
|
|
}
|