openvas-cli: cli, hey why not?

This commit is contained in:
Zero_Chaos 2010-07-21 03:40:57 +00:00
parent f76366a0a1
commit 17d1fc7633
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,2 @@
DIST openvas-cli-0.2.0.tar.gz 73895 RMD160 7529590d1db5e2bb0567b8eedc55316b570dbe35 SHA1 67f1810ce5f990b5d727d9f2643c1307f2ed3dc1 SHA256 c25e9f32c8beefc900eaf50063747d03cec53afa636c6a0212601441376f8363
EBUILD openvas-cli-0.2.0.ebuild 770 RMD160 ea569c5fedb61a200bcae7b11731de36235677ed SHA1 199a626e5764faefd310a4b18be376f9bfc359fe SHA256 7d6d0e0c40da4ee27e28cdf991f3e2a2a39fb2305ed14bc24bd387de5907b31f

View file

@ -0,0 +1,37 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
inherit versionator eutils
MY_P=${P/_rc/.rc}
DESCRIPTION="A remote security scanner for Linux (openvas-libraries)"
HOMEPAGE="http://www.openvas.org/"
SRC_URI="http://wald.intevation.org/frs/download.php/758/${MY_P}.tar.gz"
EAPI="2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="net-libs/gnutls
>=dev-libs/glib-2.0
net-libs/gnutls
net-libs/libpcap
>=app-crypt/gpgme-1.1.2
>=net-analyzer/openvas-libraries-3.0.3"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
src_prepare() {
cmake .
}
src_install() {
DESTDIR="${D}" emake install || die "failed to install"
dodoc ChangeLog CHANGES || die
}