diff --git a/net-analyzer/openvas-cli/Manifest b/net-analyzer/openvas-cli/Manifest new file mode 100644 index 000000000..e12bbd9d7 --- /dev/null +++ b/net-analyzer/openvas-cli/Manifest @@ -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 diff --git a/net-analyzer/openvas-cli/openvas-cli-0.2.0.ebuild b/net-analyzer/openvas-cli/openvas-cli-0.2.0.ebuild new file mode 100644 index 000000000..3a38bbb8e --- /dev/null +++ b/net-analyzer/openvas-cli/openvas-cli-0.2.0.ebuild @@ -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 +}