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 7186D1388C1 for ; Fri, 25 Dec 2015 15:02:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 391C1E086F; Fri, 25 Dec 2015 15:02:09 +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 F07C6E086D for ; Fri, 25 Dec 2015 15:02:07 +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 B79C63405D5 for ; Fri, 25 Dec 2015 15:02:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15088B2F for ; Fri, 25 Dec 2015 15:02:02 +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: <1451055715.648401f62dac58e4e23aa3d7f7215dfd82129a30.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: 648401f62dac58e4e23aa3d7f7215dfd82129a30 X-VCS-Branch: master Date: Fri, 25 Dec 2015 15:02:02 +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: cf21a5b4-f8de-4ebb-b9fc-c409cd11925c X-Archives-Hash: 47b10dec273b4e56f5df5cabf44fd82e commit: 648401f62dac58e4e23aa3d7f7215dfd82129a30 Author: Jeroen Roovers gentoo org> AuthorDate: Fri Dec 25 14:59:24 2015 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Fri Dec 25 15:01:55 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=648401f6 net-analyzer/nmap: Conditionally make makefile.dep (bug #569678 by iGentoo). Package-Manager: portage-2.2.26 net-analyzer/nmap/nmap-7.01.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/net-analyzer/nmap/nmap-7.01.ebuild b/net-analyzer/nmap/nmap-7.01.ebuild index dd19efc..9c90f5a 100644 --- a/net-analyzer/nmap/nmap-7.01.ebuild +++ b/net-analyzer/nmap/nmap-7.01.ebuild @@ -132,7 +132,11 @@ src_configure() { src_compile() { local directory - for directory in . libnetutil ncat nmap-update nping nsock/src; do + for directory in . libnetutil nsock/src \ + $(usex ncat ncat '') \ + $(usex nmap-update nmap-update '') \ + $(usex nping nping '') + do emake -C "${directory}" makefile.dep done