blob: 675c92e710f5a6eeb6fa224d24f858f73cde18bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DL_ID=1999
DESCRIPTION="Collection of scanner wrappers for OpenVAS"
HOMEPAGE="http://www.openvas.org/"
SRC_URI="http://wald.intevation.org/frs/download.php/${DL_ID}/${P/_beta/+beta}.tar.gz"
SLOT="0"
LICENSE="GPL-2+"
KEYWORDS=" ~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND="
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/pexpect[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
S="${WORKDIR}"/${P/_beta/-beta}
_DOCS=( ChangeLog CHANGES README )
python_test() {
esetup.py test
}
|