From owner-svn-ports-head@FreeBSD.ORG Sat Sep 7 22:54:34 2013 Return-Path: Delivered-To: svn-ports-head@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 ESMTP id 0F09CCF0; Sat, 7 Sep 2013 22:54:34 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (ainaz.pair.com [209.68.2.66]) by mx1.freebsd.org (Postfix) with ESMTP id E0E562984; Sat, 7 Sep 2013 22:54:33 +0000 (UTC) Received: from [192.168.0.132] (vie-91-186-148-050.dsl.sil.at [91.186.148.50]) by ainaz.pair.com (Postfix) with ESMTPSA id 867943F418; Sat, 7 Sep 2013 18:54:23 -0400 (EDT) Date: Sun, 8 Sep 2013 00:54:22 +0200 (CEST) From: Gerald Pfeifer To: Oliver Lehmann Subject: Re: svn commit: r326685 - in head: devel/mercator math/wfmath In-Reply-To: <201309072043.r87KhjYi068970@svn.freebsd.org> Message-ID: References: <201309072043.r87KhjYi068970@svn.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 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: Sat, 07 Sep 2013 22:54:34 -0000 On Sat, 7 Sep 2013, Oliver Lehmann wrote: > Modified: head/devel/mercator/Makefile > ============================================================================== > --- head/devel/mercator/Makefile Sat Sep 7 20:42:39 2013 (r326684) > +++ head/devel/mercator/Makefile Sat Sep 7 20:43:45 2013 (r326685) > @@ -14,6 +14,7 @@ LIB_DEPENDS= wfmath-1.0.1:${PORTSDIR}/ma > USES= pathfix pkgconfig > GNU_CONFIGURE= yes > USE_LDCONFIG= yes > +USE_GCC= yes I noticed this has CXXFLAGS=${CXXFLAGS} for CONFIGURE_ARGS which should be coverd by Mk/bsd.port.mk and old-style LIB_DEPENDS. How about the patch below? Gerald @FreeBSD.org Index: devel/mercator/Makefile =================================================================== --- devel/mercator/Makefile (revision 326698) +++ devel/mercator/Makefile (working copy) @@ -9,7 +9,7 @@ MAINTAINER= oliver@FreeBSD.org COMMENT= A procedural terrain library -LIB_DEPENDS= wfmath-1.0.1:${PORTSDIR}/math/wfmath +LIB_DEPENDS= libwfmath.so:${PORTSDIR}/math/wfmath USES= pathfix pkgconfig GNU_CONFIGURE= yes @@ -17,6 +17,5 @@ USE_GCC= yes CXXFLAGS+= -include wchar.h -CONFIGURE_ARGS+="CXXFLAGS=${CXXFLAGS}" .include