diff options
author | Hanno Böck <hanno@gentoo.org> | 2014-06-19 13:34:34 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2014-06-19 13:34:34 +0000 |
commit | 4a1fc62e5ee5adbf8a17cd8ab9c084d44a63ff88 (patch) | |
tree | 97f46d5254038be96c318c7668bf524557ec9c6f /net-analyzer/openvas-libraries | |
parent | Remove KDE SC 4.13.1 (diff) | |
download | gentoo-2-4a1fc62e5ee5adbf8a17cd8ab9c084d44a63ff88.tar.gz gentoo-2-4a1fc62e5ee5adbf8a17cd8ab9c084d44a63ff88.tar.bz2 gentoo-2-4a1fc62e5ee5adbf8a17cd8ab9c084d44a63ff88.zip |
openvas-libraries bump and add missing deps
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xA5880072BBB51E42)
Diffstat (limited to 'net-analyzer/openvas-libraries')
-rw-r--r-- | net-analyzer/openvas-libraries/ChangeLog | 9 | ||||
-rw-r--r-- | net-analyzer/openvas-libraries/openvas-libraries-7.0.2.ebuild | 44 |
2 files changed, 51 insertions, 2 deletions
diff --git a/net-analyzer/openvas-libraries/ChangeLog b/net-analyzer/openvas-libraries/ChangeLog index e5bd43517b93..e3454a4d8489 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-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-libraries/ChangeLog,v 1.15 2013/11/10 18:12:28 hanno Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-libraries/ChangeLog,v 1.16 2014/06/19 13:34:34 hanno Exp $ + +*openvas-libraries-7.0.2 (19 Jun 2014) + + 19 Jun 2014; Hanno Boeck <hanno@gentoo.org> +openvas-libraries-7.0.2.ebuild: + Bump and add missing deps openldap and libssh. *openvas-libraries-6.0.1 (10 Nov 2013) diff --git a/net-analyzer/openvas-libraries/openvas-libraries-7.0.2.ebuild b/net-analyzer/openvas-libraries/openvas-libraries-7.0.2.ebuild new file mode 100644 index 000000000000..aae9311049a6 --- /dev/null +++ b/net-analyzer/openvas-libraries/openvas-libraries-7.0.2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-libraries/openvas-libraries-7.0.2.ebuild,v 1.1 2014/06/19 13:34:34 hanno Exp $ + +EAPI=5 + +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/1671/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~arm ~ppc ~x86" +IUSE="" + +RDEPEND=">=dev-libs/glib-2.12 + net-libs/gnutls + net-libs/libpcap + app-crypt/gpgme + !net-analyzer/openvas-libnasl + net-nds/openldap + net-libs/libssh" +DEPEND="${RDEPEND} + sys-devel/bison + sys-devel/flex + virtual/pkgconfig + dev-util/cmake" + +DOCS="ChangeLog CHANGES README" + +src_configure() { + local mycmakeargs=( + "-DLOCALSTATEDIR=${EPREFIX}/var" + "-DSYSCONFDIR=${EPREFIX}/etc" + ) + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + keepdir /var/cache/openvas/ +} |