diff options
author | Hanno Böck <hanno@gentoo.org> | 2011-10-09 17:13:53 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2011-10-09 17:13:53 +0000 |
commit | daabc13d480c183e88fef126f4fd01c8826ed930 (patch) | |
tree | 4f5cf0892ce8204502ac65cbb3f9f01d2cd339d5 /net-analyzer | |
parent | alpha/ia64/sparc stable wrt #361767 (diff) | |
download | gentoo-2-daabc13d480c183e88fef126f4fd01c8826ed930.tar.gz gentoo-2-daabc13d480c183e88fef126f4fd01c8826ed930.tar.bz2 gentoo-2-daabc13d480c183e88fef126f4fd01c8826ed930.zip |
New openvas major version.
(Portage version: 2.1.10.24/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/openvas-libraries/ChangeLog | 9 | ||||
-rw-r--r-- | net-analyzer/openvas-libraries/openvas-libraries-4.0.5.ebuild | 40 |
2 files changed, 47 insertions, 2 deletions
diff --git a/net-analyzer/openvas-libraries/ChangeLog b/net-analyzer/openvas-libraries/ChangeLog index 6e0965edaed8..bab8369e2523 100644 --- a/net-analyzer/openvas-libraries/ChangeLog +++ b/net-analyzer/openvas-libraries/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/openvas-libraries -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-libraries/ChangeLog,v 1.10 2009/09/07 16:19:57 hanno Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-libraries/ChangeLog,v 1.11 2011/10/09 17:13:53 hanno Exp $ + +*openvas-libraries-4.0.5 (09 Oct 2011) + + 09 Oct 2011; Hanno Boeck <hanno@gentoo.org> +openvas-libraries-4.0.5.ebuild: + New major revision of openvas. *openvas-libraries-2.0.4 (07 Sep 2009) diff --git a/net-analyzer/openvas-libraries/openvas-libraries-4.0.5.ebuild b/net-analyzer/openvas-libraries/openvas-libraries-4.0.5.ebuild new file mode 100644 index 000000000000..aee041325b77 --- /dev/null +++ b/net-analyzer/openvas-libraries/openvas-libraries-4.0.5.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-libraries/openvas-libraries-4.0.5.ebuild,v 1.1 2011/10/09 17:13:53 hanno Exp $ + +EAPI=4 + +inherit cmake-utils + +DESCRIPTION="A remote security scanner for Linux (openvas-libraries)" +HOMEPAGE="http://www.openvas.org/" +SRC_URI="http://wald.intevation.org/frs/download.php/872/${P}.tar.gz" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=">=dev-libs/glib-2.12 + net-libs/gnutls + net-libs/libpcap + app-crypt/gpgme + !net-analyzer/openvas-libnasl" +DEPEND="${RDEPEND} + sys-devel/bison + sys-devel/flex + dev-util/pkgconfig + dev-util/cmake" + +# Workaround for upstream bug, it doesn't like out-of-tree builds. +CMAKE_BUILD_DIR="${S}" + +src_configure() { + local mycmakeargs="-DLOCALSTATEDIR=/var -DSYSCONFDIR=/etc" + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + dodoc ChangeLog CHANGES README || die "dodoc failed" + keepdir /var/cache/openvas/ +} |