diff options
author | Hanno Böck <hanno@gentoo.org> | 2013-11-10 18:12:28 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2013-11-10 18:12:28 +0000 |
commit | df65f734b0b77776b8ad15a1102485acaa1f9dd4 (patch) | |
tree | 5137c945d2d958945f61b2731e87a9266a0f47fd /net-analyzer | |
parent | Version bump. (diff) | |
download | gentoo-2-df65f734b0b77776b8ad15a1102485acaa1f9dd4.tar.gz gentoo-2-df65f734b0b77776b8ad15a1102485acaa1f9dd4.tar.bz2 gentoo-2-df65f734b0b77776b8ad15a1102485acaa1f9dd4.zip |
openvas-libraries bump
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xA5880072BBB51E42)
Diffstat (limited to 'net-analyzer')
4 files changed, 49 insertions, 43 deletions
diff --git a/net-analyzer/openvas-libraries/ChangeLog b/net-analyzer/openvas-libraries/ChangeLog index ad0665f26ad7..e5bd43517b93 100644 --- a/net-analyzer/openvas-libraries/ChangeLog +++ b/net-analyzer/openvas-libraries/ChangeLog @@ -1,6 +1,12 @@ # 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.14 2013/09/15 09:36:26 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-libraries/ChangeLog,v 1.15 2013/11/10 18:12:28 hanno Exp $ + +*openvas-libraries-6.0.1 (10 Nov 2013) + + 10 Nov 2013; Hanno Boeck <hanno@gentoo.org> -openvas-libraries-2.0.3.ebuild, + -openvas-libraries-2.0.4.ebuild, +openvas-libraries-6.0.1.ebuild: + Bump, remove some old versions. 15 Sep 2013; Markus Meier <maekke@gentoo.org> openvas-libraries-6.0.0.ebuild: add ~arm, bug #389453 diff --git a/net-analyzer/openvas-libraries/openvas-libraries-2.0.3.ebuild b/net-analyzer/openvas-libraries/openvas-libraries-2.0.3.ebuild deleted file mode 100644 index b19b39b697a9..000000000000 --- a/net-analyzer/openvas-libraries/openvas-libraries-2.0.3.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-libraries/openvas-libraries-2.0.3.ebuild,v 1.1 2009/07/24 19:29:58 hanno Exp $ - -DESCRIPTION="A remote security scanner for Linux (openvas-libraries)" -HOMEPAGE="http://www.openvas.org/" -SRC_URI="http://wald.intevation.org/frs/download.php/600/${P}.tar.gz" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND="net-libs/gnutls - net-libs/libpcap" -RDEPEND="${DEPEND}" - -src_install() { - einstall || die "failed to install" - find "${D}" -name '*.la' -delete - dodoc ChangeLog CHANGES TODO || die -} diff --git a/net-analyzer/openvas-libraries/openvas-libraries-2.0.4.ebuild b/net-analyzer/openvas-libraries/openvas-libraries-2.0.4.ebuild deleted file mode 100644 index a67df9274172..000000000000 --- a/net-analyzer/openvas-libraries/openvas-libraries-2.0.4.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-libraries/openvas-libraries-2.0.4.ebuild,v 1.1 2009/09/07 16:19:57 hanno Exp $ - -DESCRIPTION="A remote security scanner for Linux (openvas-libraries)" -HOMEPAGE="http://www.openvas.org/" -SRC_URI="http://wald.intevation.org/frs/download.php/618/${P}.tar.gz" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND="net-libs/gnutls - net-libs/libpcap" -RDEPEND="${DEPEND}" - -src_install() { - einstall || die "failed to install" - find "${D}" -name '*.la' -delete - dodoc ChangeLog CHANGES TODO || die -} diff --git a/net-analyzer/openvas-libraries/openvas-libraries-6.0.1.ebuild b/net-analyzer/openvas-libraries/openvas-libraries-6.0.1.ebuild new file mode 100644 index 000000000000..a37160edc729 --- /dev/null +++ b/net-analyzer/openvas-libraries/openvas-libraries-6.0.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/openvas-libraries/openvas-libraries-6.0.1.ebuild,v 1.1 2013/11/10 18:12:28 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/1417/${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" +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/ +} |