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 40B671382C5 for ; Sun, 14 Feb 2021 20:05:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0500FE09A7; Sun, 14 Feb 2021 20:04:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 E486DE09A7 for ; Sun, 14 Feb 2021 20:04:46 +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 54B49340E6B for ; Sun, 14 Feb 2021 20:04:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B42E14CA for ; Sun, 14 Feb 2021 20:04:43 +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: <1613333071.32407f8c9f5b1b9063435e0ceeca44d8a01439cf.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/dynamips/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/dynamips/dynamips-0.2.21.ebuild X-VCS-Directories: app-emulation/dynamips/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 32407f8c9f5b1b9063435e0ceeca44d8a01439cf X-VCS-Branch: master Date: Sun, 14 Feb 2021 20:04:43 +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: daaccad8-1cba-46db-bd2c-57c34ace1711 X-Archives-Hash: 91e505cbf624e4e9e574fcc521b1af75 commit: 32407f8c9f5b1b9063435e0ceeca44d8a01439cf Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 14 20:02:45 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 14 20:04:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32407f8c app-emulation/dynamips: EAPI-7 bump Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> app-emulation/dynamips/dynamips-0.2.21.ebuild | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app-emulation/dynamips/dynamips-0.2.21.ebuild b/app-emulation/dynamips/dynamips-0.2.21.ebuild index 21b04e6456e..ad971daa108 100644 --- a/app-emulation/dynamips/dynamips-0.2.21.ebuild +++ b/app-emulation/dynamips/dynamips-0.2.21.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="Cisco 7200/3600 Simulator" HOMEPAGE="https://github.com/GNS3/dynamips" @@ -16,7 +16,8 @@ KEYWORDS="~amd64 ~x86" IUSE="ipv6" BDEPEND="app-arch/unzip" -RDEPEND="dev-libs/elfutils +RDEPEND=" + dev-libs/elfutils net-libs/libpcap" DEPEND="${RDEPEND}" @@ -28,7 +29,7 @@ src_prepare() { # comment out DYNAMIPS_FLAGS to respect CFLAGS sed -e "s:^set ( DYNAMIPS_FLAGS:#&:" -i cmake/dependencies.cmake || die - cmake-utils_src_prepare + cmake_src_prepare } src_configure() { @@ -36,5 +37,5 @@ src_configure() { -DANY_COMPILER=1 -DENABLE_IPV6="$(usex ipv6)" ) - cmake-utils_src_configure + cmake_src_configure }