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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 89E4615808B for ; Mon, 14 Feb 2022 18:07:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD51BE0933; Mon, 14 Feb 2022 18:07:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 79440E0933 for ; Mon, 14 Feb 2022 18:07:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BF7C8342B6F for ; Mon, 14 Feb 2022 18:07:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33E012B8 for ; Mon, 14 Feb 2022 18:07:09 +0000 (UTC) From: "Rick Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rick Farina" Message-ID: <1644862027.55876d96812afb6518ebfb6f7438fb3044aba617.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ostinato/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/ostinato/ostinato-1.1-r1.ebuild net-analyzer/ostinato/ostinato-1.1-r2.ebuild X-VCS-Directories: net-analyzer/ostinato/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Rick Farina X-VCS-Revision: 55876d96812afb6518ebfb6f7438fb3044aba617 X-VCS-Branch: master Date: Mon, 14 Feb 2022 18:07:09 +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: 30f4d296-6d69-49e1-b275-699f89e2e428 X-Archives-Hash: 4aaca0d41dd91135bc05c25eb51503a8 commit: 55876d96812afb6518ebfb6f7438fb3044aba617 Author: Rick Farina gentoo org> AuthorDate: Mon Feb 14 18:06:19 2022 +0000 Commit: Rick Farina gentoo org> CommitDate: Mon Feb 14 18:07:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55876d96 net-analyzer/ostinato: fix pkgcheck warnings Add missing dep Closes: https://bugs.gentoo.org/789633 Signed-off-by: Rick Farina gentoo.org> .../{ostinato-1.1-r1.ebuild => ostinato-1.1-r2.ebuild} | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/net-analyzer/ostinato/ostinato-1.1-r1.ebuild b/net-analyzer/ostinato/ostinato-1.1-r2.ebuild similarity index 82% rename from net-analyzer/ostinato/ostinato-1.1-r1.ebuild rename to net-analyzer/ostinato/ostinato-1.1-r2.ebuild index 2b835a9bcecf..bccd03f406c0 100644 --- a/net-analyzer/ostinato/ostinato-1.1-r1.ebuild +++ b/net-analyzer/ostinato/ostinato-1.1-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit qmake-utils @@ -24,6 +24,7 @@ DEPEND=" dev-qt/qtscript:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 + dev-libs/libnl:= >=net-libs/libpcap-1.8.1-r2 " RDEPEND="${DEPEND}" @@ -33,5 +34,9 @@ PATCHES=( ) src_configure() { - eqmake5 PREFIX="${ED}/usr" ost.pro + eqmake5 PREFIX="/usr" ost.pro +} + +src_install() { + emake INSTALL_ROOT="${ED}" install }