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 64B26158086 for ; Thu, 21 Oct 2021 18:25:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08DD8E08C8; Thu, 21 Oct 2021 18:25:16 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E3BBCE08C8 for ; Thu, 21 Oct 2021 18:25:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5D8A343674 for ; Thu, 21 Oct 2021 18:25:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6193176 for ; Thu, 21 Oct 2021 18:25:11 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1634840581.9826a380eb37b552dc18dd899b73d43fc8609df3.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/lanmap/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/lanmap/lanmap-81-r2.ebuild net-misc/lanmap/lanmap-81-r3.ebuild X-VCS-Directories: net-misc/lanmap/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 9826a380eb37b552dc18dd899b73d43fc8609df3 X-VCS-Branch: master Date: Thu, 21 Oct 2021 18:25:11 +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: f75861a3-183c-4640-8cbe-fed447ae5d87 X-Archives-Hash: 7daf5b4ccf336f8ce2325320a89dbf3f commit: 9826a380eb37b552dc18dd899b73d43fc8609df3 Author: Jakov Smolić gentoo org> AuthorDate: Thu Oct 21 17:45:43 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Thu Oct 21 18:23:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9826a380 net-misc/lanmap: Port to EAPI 8 Signed-off-by: Jakov Smolić gentoo.org> .../{lanmap-81-r2.ebuild => lanmap-81-r3.ebuild} | 27 +++++++++++----------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/net-misc/lanmap/lanmap-81-r2.ebuild b/net-misc/lanmap/lanmap-81-r3.ebuild similarity index 67% rename from net-misc/lanmap/lanmap-81-r2.ebuild rename to net-misc/lanmap/lanmap-81-r3.ebuild index eead125ec3f..d2bb7fd585a 100644 --- a/net-misc/lanmap/lanmap-81-r2.ebuild +++ b/net-misc/lanmap/lanmap-81-r3.ebuild @@ -1,40 +1,39 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 -inherit autotools epatch toolchain-funcs +inherit autotools toolchain-funcs DESCRIPTION="lanmap sits quietly on a network and builds a picture of what it sees" HOMEPAGE="http://www.parseerror.com/lanmap" SRC_URI="http://www.parseerror.com/${PN}/rev/${PN}-2006-03-07-rev${PV}.zip" +S="${WORKDIR}/${PN}" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -CDEPEND="net-libs/libpcap" -RDEPEND=" - ${CDEPEND} +DEPEND="net-libs/libpcap" +RDEPEND="${DEPEND} media-gfx/graphviz " -DEPEND=" - ${CDEPEND} - app-arch/unzip -" +BDEPEND="app-arch/unzip" -S=${WORKDIR}/${PN} +PATCHES=( + "${FILESDIR}"/${P}-make.patch + "${FILESDIR}"/${P}-printf-format.patch +) src_prepare() { - epatch \ - "${FILESDIR}"/${P}-make.patch \ - "${FILESDIR}"/${P}-printf-format.patch + default rm configure || die eautoreconf } src_compile() { - emake CC="$(tc-getCC)" + tc-export CC + emake } src_install() {