From owner-svn-ports-all@FreeBSD.ORG Sat Mar 8 18:07:14 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 280EA126; Sat, 8 Mar 2014 18:07:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 12D37ACB; Sat, 8 Mar 2014 18:07:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s28I7Dlh066157; Sat, 8 Mar 2014 18:07:13 GMT (envelope-from tijl@svn.freebsd.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s28I7D5w066156; Sat, 8 Mar 2014 18:07:13 GMT (envelope-from tijl@svn.freebsd.org) Message-Id: <201403081807.s28I7D5w066156@svn.freebsd.org> From: Tijl Coosemans Date: Sat, 8 Mar 2014 18:07:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r347528 - head/science/netcdf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 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: Sat, 08 Mar 2014 18:07:14 -0000 Author: tijl Date: Sat Mar 8 18:07:13 2014 New Revision: 347528 URL: http://svnweb.freebsd.org/changeset/ports/347528 QAT: https://qat.redports.org/buildarchive/r347528/ Log: Add USES=gmake to fix installation on systems that use fmake by default. Some makefiles in this port list "configure" as a dependency of some files. Because "configure" gets modified by USES=libtool, this means make tries to regenerate them. The commands for these files detect that nothing has changed however and they don't actually regenerate the files. Both bmake and gmake leave it at that, but fmake reruns all targets that depend on these files anyway. This fails because it requires tools that aren't available. Reported by: antoine Modified: head/science/netcdf/Makefile Modified: head/science/netcdf/Makefile ============================================================================== --- head/science/netcdf/Makefile Sat Mar 8 17:36:32 2014 (r347527) +++ head/science/netcdf/Makefile Sat Mar 8 18:07:13 2014 (r347528) @@ -19,7 +19,7 @@ PORTSCOUT= limit:^3\. CONFIGURE_ARGS= --enable-shared CPPFLAGS+= -I${LOCALBASE}/include -fPIC -DPIC GNU_CONFIGURE= yes -USES= libtool +USES= gmake libtool USE_LDCONFIG= yes INFO= netcdf netcdf-c netcdf-cxx netcdf-f77 netcdf-f90 \