diff options
author | Hanno Böck <hanno@gentoo.org> | 2009-09-07 17:16:15 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2009-09-07 17:16:15 +0000 |
commit | 89e0daa44004c5a8c3e855b2f246eab84751fd3d (patch) | |
tree | e068373fceffa3d298c3d8d2d37c5e0104d0b151 /net-analyzer | |
parent | Version bumped. (diff) | |
download | gentoo-2-89e0daa44004c5a8c3e855b2f246eab84751fd3d.tar.gz gentoo-2-89e0daa44004c5a8c3e855b2f246eab84751fd3d.tar.bz2 gentoo-2-89e0daa44004c5a8c3e855b2f246eab84751fd3d.zip |
openvas-client bump
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/openvas-client/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/openvas-client/openvas-client-2.0.5.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/net-analyzer/openvas-client/ChangeLog b/net-analyzer/openvas-client/ChangeLog index f4b42d93f2b7..66220afe9732 100644 --- a/net-analyzer/openvas-client/ChangeLog +++ b/net-analyzer/openvas-client/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/openvas-client # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-client/ChangeLog,v 1.10 2009/07/24 19:35:44 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-client/ChangeLog,v 1.11 2009/09/07 17:16:15 hanno Exp $ + +*openvas-client-2.0.5 (07 Sep 2009) + + 07 Sep 2009; Hanno Boeck <hanno@gentoo.org> +openvas-client-2.0.5.ebuild: + Version bump. *openvas-client-2.0.4 (24 Jul 2009) diff --git a/net-analyzer/openvas-client/openvas-client-2.0.5.ebuild b/net-analyzer/openvas-client/openvas-client-2.0.5.ebuild new file mode 100644 index 000000000000..d5b4dde5c5a7 --- /dev/null +++ b/net-analyzer/openvas-client/openvas-client-2.0.5.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-client/openvas-client-2.0.5.ebuild,v 1.1 2009/09/07 17:16:15 hanno Exp $ + +inherit eutils + +DESCRIPTION="A client for the openvas vulnerability scanner" +HOMEPAGE="http://www.openvas.org/" +SRC_URI="http://wald.intevation.org/frs/download.php/617/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gtk" + +DEPEND="net-libs/gnutls + gtk? ( >=x11-libs/gtk+-2.8.8 )" +RDEPEND="${DEPEND}" + +# Upstream bug: +# http://wald.intevation.org/tracker/index.php?func=detail&aid=941&group_id=29&atid=220 +MAKEOPTS="-j1" + +src_compile() { + econf $(use_enable gtk) || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dodoc AUTHORS CHANGES README TODO || die "dodoc failed" + + make_desktop_entry OpenVAS-Client "OpenVAS Client" /usr/share/pixmaps/openvas-client.png "Network" +} |