From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7C7D41388C1 for ; Thu, 24 Dec 2015 12:50:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 337D021C007; Thu, 24 Dec 2015 12:50:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C135421C007 for ; Thu, 24 Dec 2015 12:50:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 719DF340662 for ; Thu, 24 Dec 2015 12:50:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8848DCEA for ; Thu, 24 Dec 2015 12:50:37 +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: <1450961433.eba0e3a0dd9ac6ffc9a1ceae51822d65145a0cfb.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nmap/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/nmap/nmap-7.01.ebuild X-VCS-Directories: net-analyzer/nmap/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: eba0e3a0dd9ac6ffc9a1ceae51822d65145a0cfb X-VCS-Branch: master Date: Thu, 24 Dec 2015 12:50:37 +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: 2fb54d87-00e2-47d5-a155-6f4234bb1969 X-Archives-Hash: 79acef7f7a93790db129edbe8ab70ded commit: eba0e3a0dd9ac6ffc9a1ceae51822d65145a0cfb Author: Jeroen Roovers gentoo org> AuthorDate: Thu Dec 24 12:50:00 2015 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Thu Dec 24 12:50:33 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eba0e3a0 net-analyzer/nmap: Make makefile.dep. Do not remove targets. Package-Manager: portage-2.2.26 net-analyzer/nmap/nmap-7.01.ebuild | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/net-analyzer/nmap/nmap-7.01.ebuild b/net-analyzer/nmap/nmap-7.01.ebuild index 0022291..dd19efc 100644 --- a/net-analyzer/nmap/nmap-7.01.ebuild +++ b/net-analyzer/nmap/nmap-7.01.ebuild @@ -96,6 +96,11 @@ src_prepare() { -e '/^ALL_LINGUAS =/{s|$| id|g;s|jp|ja|g}' \ Makefile.in || die + sed -i \ + -e '/rm -f $@/d' \ + $(find . -name Makefile.in) \ + || die + # Fix desktop files wrt bug #432714 sed -i \ -e '/^Encoding/d' \ @@ -126,6 +131,11 @@ src_configure() { } src_compile() { + local directory + for directory in . libnetutil ncat nmap-update nping nsock/src; do + emake -C "${directory}" makefile.dep + done + emake \ AR=$(tc-getAR) \ RANLIB=$(tc-getRANLIB)