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 2918F13888F for ; Fri, 16 Oct 2015 04:38:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9055C21C006; Fri, 16 Oct 2015 04:38:22 +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 2074121C006 for ; Fri, 16 Oct 2015 04:38:22 +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 2E8983408C7 for ; Fri, 16 Oct 2015 04:38:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0139CE6A for ; Fri, 16 Oct 2015 04:38:17 +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: <1444970259.6312082dd25ab32a275d33330a18bee445486957.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-9999.ebuild X-VCS-Directories: net-analyzer/nmap/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 6312082dd25ab32a275d33330a18bee445486957 X-VCS-Branch: master Date: Fri, 16 Oct 2015 04:38:17 +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: 17b0797b-71f4-4a1b-8a04-4c58ef067e77 X-Archives-Hash: 310b9f39335ab20893b1e0f9110c501f commit: 6312082dd25ab32a275d33330a18bee445486957 Author: Jeroen Roovers gentoo org> AuthorDate: Fri Oct 16 04:37:13 2015 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Fri Oct 16 04:37:39 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6312082d net-analyzer/nmap: Work around Makefile fail in ebuild (bug #563038 by Macintosh). Package-Manager: portage-2.2.23 net-analyzer/nmap/nmap-9999.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/net-analyzer/nmap/nmap-9999.ebuild b/net-analyzer/nmap/nmap-9999.ebuild index 1e02fc0..f72ca71 100644 --- a/net-analyzer/nmap/nmap-9999.ebuild +++ b/net-analyzer/nmap/nmap-9999.ebuild @@ -64,12 +64,10 @@ src_prepare() { "${FILESDIR}"/${PN}-4.75-nolua.patch \ "${FILESDIR}"/${PN}-5.10_beta1-string.patch \ "${FILESDIR}"/${PN}-5.21-python.patch \ - "${FILESDIR}"/${PN}-6.01-make.patch \ "${FILESDIR}"/${PN}-6.25-liblua-ar.patch \ "${FILESDIR}"/${PN}-6.46-uninstaller.patch \ "${FILESDIR}"/${PN}-6.47-no-libnl.patch \ - "${FILESDIR}"/${PN}-no-FORTIFY_SOURCE.patch \ - "${FILESDIR}"/${PN}-6.47-ncat-lua.patch + "${FILESDIR}"/${PN}-no-FORTIFY_SOURCE.patch if use nls; then local lingua='' @@ -121,6 +119,12 @@ src_configure() { } src_compile() { + local dep deps="build-dnet build-nbase build-nsock build-netutil" + + for dep in ${deps}; do + emake makefile.dep ${dep} + done + emake \ AR=$(tc-getAR) \ RANLIB=$(tc-getRANLIB )