From owner-svn-ports-head@freebsd.org Tue May 28 06:31:46 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 36AA915B822B; Tue, 28 May 2019 06:31:46 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CDC1C6A110; Tue, 28 May 2019 06:31:45 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id BE4D7679E; Tue, 28 May 2019 06:31:45 +0000 (UTC) Date: Tue, 28 May 2019 06:31:45 +0000 From: Alexey Dokuchaev To: Li-Wen Hsu Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r502854 - in head/lang: . julia10 julia10/files Message-ID: <20190528063145.GA63427@FreeBSD.org> References: <201905280559.x4S5x1NM099971@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201905280559.x4S5x1NM099971@repo.freebsd.org> User-Agent: Mutt/1.11.4 (2019-03-13) X-Rspamd-Queue-Id: CDC1C6A110 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.95 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.951,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 May 2019 06:31:46 -0000 On Tue, May 28, 2019 at 05:59:01AM +0000, Li-Wen Hsu wrote: > New Revision: 502854 > URL: https://svnweb.freebsd.org/changeset/ports/502854 > > Log: > Copy lang/julia to lang/julia10 > > ... > @@ -21,31 +21,36 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ > libutf8proc.so:textproc/utf8proc > +EXTRACT_DEPENDS=gmake:devel/gmake > BUILD_DEPENDS= patchelf:sysutils/patchelf \ > pcre2-config:devel/pcre2 \ > cmake:devel/cmake > > -USES= gmake compiler:c++11-lib fortran python:2.7,build perl5 > +USES= gmake compiler:c++11-lib fortran python:2.7,build perl5 \ > ... > -post-configure: > +post-extract: > + ${GMAKE} -C ${WRKSRC}/deps extract > + ${GMAKE} -C ${WRKSRC}/stdlib install Typically invoking specific make(1) flavor is an anti-pattern, correct spelling should be ${MAKE_CMD}. You might want to revisit these lines next time you touch the port. ./danfe