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 C79C413997D for ; Wed, 13 Nov 2019 01:03:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0018E08EF; Wed, 13 Nov 2019 01:03:12 +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 D462AE08EF for ; Wed, 13 Nov 2019 01:03:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 007D334CCEA for ; Wed, 13 Nov 2019 01:03:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A58048C7 for ; Wed, 13 Nov 2019 01:03:07 +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: <1573606957.839f5f243f4a45f09227f5305b5c6b27e106f120.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ike-scan/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/ike-scan/ike-scan-1.9-r1.ebuild X-VCS-Directories: net-analyzer/ike-scan/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 839f5f243f4a45f09227f5305b5c6b27e106f120 X-VCS-Branch: master Date: Wed, 13 Nov 2019 01:03:07 +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: 501cf182-38f2-4061-b233-c2fc833ec315 X-Archives-Hash: c7b99a58c30eec210acdb49bc999019c commit: 839f5f243f4a45f09227f5305b5c6b27e106f120 Author: Aaron Bauman gentoo org> AuthorDate: Wed Nov 13 00:02:44 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed Nov 13 01:02:37 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=839f5f24 net-analyzer/ike-scan: drop old EAPI Signed-off-by: Aaron Bauman gentoo.org> net-analyzer/ike-scan/ike-scan-1.9-r1.ebuild | 34 ---------------------------- 1 file changed, 34 deletions(-) diff --git a/net-analyzer/ike-scan/ike-scan-1.9-r1.ebuild b/net-analyzer/ike-scan/ike-scan-1.9-r1.ebuild deleted file mode 100644 index 72e47e829d5..00000000000 --- a/net-analyzer/ike-scan/ike-scan-1.9-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -DESCRIPTION="A utility for finding, fingerprinting and testing IKE VPN servers" -HOMEPAGE="http://www.nta-monitor.com/ike-scan/" -SRC_URI="http://www.nta-monitor.com/ike-scan/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc x86" -IUSE="ssl" - -DEPEND="ssl? ( dev-libs/openssl )" -RDEPEND="${DEPEND}" - -src_prepare() { - # Fix buffer overflow, bug #277556 - sed \ - -e "/MAXLINE/s:255:511:g" \ - -i ike-scan.h || die -} - -src_configure() { - # --disable-lookup prevents ike-scan from phoning home - # for more information, please see bug 157507 - econf $(use_with ssl openssl) --disable-lookup -} - -src_install() { - default - dodoc udp-backoff-fingerprinting-paper.txt -}