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 75CBF1382C5 for ; Fri, 27 Nov 2020 16:28:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74A06E08CD; Fri, 27 Nov 2020 16:28:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 2126EE08BF for ; Fri, 27 Nov 2020 16:28:34 +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 257433414DC for ; Fri, 27 Nov 2020 16:28:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 618B846E for ; Fri, 27 Nov 2020 16:28:31 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1606494504.8273539733d6dbfa009fd1ddc99109477f889fb1.bman@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-r1.ebuild X-VCS-Directories: net-misc/lanmap/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 8273539733d6dbfa009fd1ddc99109477f889fb1 X-VCS-Branch: master Date: Fri, 27 Nov 2020 16:28:31 +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: d3d377d5-7dd0-4010-ab98-7f7a69ff3ee5 X-Archives-Hash: 30879606d9322fff69521b90dfcfcb03 commit: 8273539733d6dbfa009fd1ddc99109477f889fb1 Author: Aaron Bauman gentoo org> AuthorDate: Fri Nov 27 16:10:27 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Fri Nov 27 16:28:24 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82735397 net-misc/lanmap: drop old EAPI Signed-off-by: Aaron Bauman gentoo.org> net-misc/lanmap/lanmap-81-r1.ebuild | 40 ------------------------------------- 1 file changed, 40 deletions(-) diff --git a/net-misc/lanmap/lanmap-81-r1.ebuild b/net-misc/lanmap/lanmap-81-r1.ebuild deleted file mode 100644 index 7c14fb94965..00000000000 --- a/net-misc/lanmap/lanmap-81-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools eutils 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" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" - -CDEPEND="net-libs/libpcap" -RDEPEND=" - ${CDEPEND} - media-gfx/graphviz -" -DEPEND=" - ${CDEPEND} - app-arch/unzip -" - -S=${WORKDIR}/${PN} - -src_prepare() { - epatch "${FILESDIR}"/${P}-make.patch - rm configure || die - eautoreconf -} - -src_compile() { - emake CC="$(tc-getCC)" -} - -src_install() { - emake prefix="${ED}"/usr install - dodoc README.txt TODO.txt -}