From owner-svn-ports-all@freebsd.org Fri Aug 19 22:15:52 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 34EA1BBF369; Fri, 19 Aug 2016 22:15:52 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 2B0E71A71; Fri, 19 Aug 2016 22:15:52 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 29E4E118D; Fri, 19 Aug 2016 22:15:52 +0000 (UTC) Date: Fri, 19 Aug 2016 22:15:52 +0000 From: Alexey Dokuchaev To: Pawel Pekala Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r420492 - in head/sysutils/modules: . files Message-ID: <20160819221552.GA18218@FreeBSD.org> References: <201608192209.u7JM9ieZ024712@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201608192209.u7JM9ieZ024712@repo.freebsd.org> User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Aug 2016 22:15:52 -0000 On Fri, Aug 19, 2016 at 10:09:44PM +0000, Pawel Pekala wrote: > New Revision: 420492 > URL: https://svnweb.freebsd.org/changeset/ports/420492 > > Log: > - Convert to USES=tcl changing version of TCL > port depends on to 8.6, bump PORTREVISION > - Add patch fixing build with TCL 8.6 > - Regenerate patches with make makepatch > > [...] > HAS_CONFIGURE= yes > - > CONFIGURE_ARGS= --prefix=${LOCALBASE} \ > --without-x \ > --with-version-path=${LOCALBASE}/Modules/versions \ > --mandir=${MANPREFIX}/man \ > - --with-tcl-ver=${TCL_VER} \ > - --with-tcl-inc=${LOCALBASE}/include/tcl${TCL_DVER} \ > + --with-tcl-ver=${TCL_VER:S/.//} \ > + --with-tcl-inc=${TCL_INCLUDEDIR} \ > --with-tcl-lib=${LOCALBASE}/lib \ > - --with-tclx-ver=${TCL_VER} > + --with-tclx-ver=${TCL_VER:S/.//} It looks like it uses GNU autotools-generated configure script, why it says HAS_CONFIGURE above rather than GNU_CONFIGURE? ./danfe