From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 95506138334 for ; Mon, 31 Dec 2018 23:43:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73B2FE0BA4; Mon, 31 Dec 2018 23:43:40 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4A872E0BA4 for ; Mon, 31 Dec 2018 23:43:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E36CC335CF3 for ; Mon, 31 Dec 2018 23:43:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57A75515 for ; Mon, 31 Dec 2018 23:43:36 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1546299571.6ea3585e5940025b64c872bbef791f758204c461.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/openvas-manager/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/openvas-manager/openvas-manager-6.0.6-r2.ebuild X-VCS-Directories: net-analyzer/openvas-manager/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6ea3585e5940025b64c872bbef791f758204c461 X-VCS-Branch: master Date: Mon, 31 Dec 2018 23:43:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 829adc20-c903-486d-8bf6-1bc6f3d9a533 X-Archives-Hash: 985a9ffbb93166b7f492ae00f9ef0fc0 commit: 6ea3585e5940025b64c872bbef791f758204c461 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 31 23:39:31 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Dec 31 23:39:31 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ea3585e net-analyzer/openvas-manager: EAPI-7 bump Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> .../openvas-manager-6.0.6-r2.ebuild | 34 ++++++++++++---------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/net-analyzer/openvas-manager/openvas-manager-6.0.6-r2.ebuild b/net-analyzer/openvas-manager/openvas-manager-6.0.6-r2.ebuild index d852593f565..64a15155311 100644 --- a/net-analyzer/openvas-manager/openvas-manager-6.0.6-r2.ebuild +++ b/net-analyzer/openvas-manager/openvas-manager-6.0.6-r2.ebuild @@ -1,13 +1,11 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 - -inherit cmake-utils systemd - -MY_PN=openvasmd +EAPI=7 DL_ID=2195 +MY_PN=openvasmd +inherit cmake-utils systemd DESCRIPTION="A remote security scanner for Linux (openvas-manager)" HOMEPAGE="http://www.openvas.org/" @@ -15,35 +13,39 @@ SRC_URI="http://wald.intevation.org/frs/download.php/${DL_ID}/${P/_beta/+beta}.t SLOT="0" LICENSE="GPL-2" -KEYWORDS=" ~amd64 ~arm ~ppc ~x86" +KEYWORDS="~amd64 ~arm ~ppc ~x86" IUSE="" -RDEPEND=" - >=net-analyzer/openvas-libraries-8.0.5 - >=dev-db/sqlite-3 +DEPEND=" dev-db/redis - !net-analyzer/openvas-administrator" -DEPEND="${RDEPEND} - virtual/pkgconfig" + >=dev-db/sqlite-3 + >=net-analyzer/openvas-libraries-8.0.5 +" +RDEPEND="${DEPEND} + !net-analyzer/openvas-administrator +" +BDEPEND=" + virtual/pkgconfig +" S="${WORKDIR}"/${P} PATCHES=( "${FILESDIR}"/${PN}-6.0.1-bsdsource.patch - ) +) src_prepare() { + cmake-utils_src_prepare sed \ -e '/^install.*OPENVAS_CACHE_DIR.*/d' \ -i CMakeLists.txt || die - cmake-utils_src_prepare } src_configure() { local mycmakeargs=( -DLOCALSTATEDIR="${EPREFIX}/var" -DSYSCONFDIR="${EPREFIX}/etc" - ) + ) cmake-utils_src_configure }