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 0C3B9139695 for ; Sat, 10 Jun 2017 07:01:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08C38E0C48; Sat, 10 Jun 2017 07:01:08 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D4B01E0C48 for ; Sat, 10 Jun 2017 07:01:07 +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 B572E3417C6 for ; Sat, 10 Jun 2017 07:01:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE7C77477 for ; Sat, 10 Jun 2017 07:01:04 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1497077992.411738541dad40c965d60f8b6186e1984ec010f8.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/masscan/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/masscan/masscan-1.0.3-r1.ebuild X-VCS-Directories: net-analyzer/masscan/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 411738541dad40c965d60f8b6186e1984ec010f8 X-VCS-Branch: master Date: Sat, 10 Jun 2017 07:01:04 +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-Archives-Salt: 02b6ce48-efc9-4a0c-9807-143326c3e3fe X-Archives-Hash: 528d41af011e979afa932013e4d1861a commit: 411738541dad40c965d60f8b6186e1984ec010f8 Author: Jeroen Roovers gentoo org> AuthorDate: Sat Jun 10 06:59:52 2017 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sat Jun 10 06:59:52 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41173854 net-analyzer/masscan: Old. Package-Manager: Portage-2.3.6, Repoman-2.3.2 net-analyzer/masscan/masscan-1.0.3-r1.ebuild | 43 ---------------------------- 1 file changed, 43 deletions(-) diff --git a/net-analyzer/masscan/masscan-1.0.3-r1.ebuild b/net-analyzer/masscan/masscan-1.0.3-r1.ebuild deleted file mode 100644 index 96e9e63bb4b..00000000000 --- a/net-analyzer/masscan/masscan-1.0.3-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit toolchain-funcs - -DESCRIPTION="Mass IP port scanner" -HOMEPAGE="https://github.com/robertdavidgraham/masscan" -SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="0" -LICENSE="AGPL-3" -KEYWORDS="~amd64 ~x86" - -RDEPEND="net-libs/libpcap" -DEPEND="${RDEPEND}" - -src_prepare(){ - sed -i \ - -e '/$(CC)/s!$(CFLAGS)!$(LDFLAGS) $(CFLAGS)!g' \ - -e '/^GITVER :=/s!= .(.*!=!g' \ - -e '/^SYS/s|gcc|$(CC)|g' \ - -e '/$(CC)/s!-DGIT=\"$(GITVER)\"!!g' \ - -e '/^CFLAGS =/{s,=,+=,;s,-g -ggdb,,;s,-O3,,;}' \ - Makefile || die -} - -src_compile() { - emake CC="$(tc-getCC)" -} - -src_install() { - emake CC="$(tc-getCC)" DESTDIR="${D}" PREFIX=/usr install - - insinto /etc/masscan - doins data/exclude.conf - doins "${FILESDIR}"/masscan.conf - - mv doc/bot.{hml,html} || die - dohtml doc/bot.html - doman doc/masscan.8 - dodoc *.md -}