From owner-svn-ports-all@FreeBSD.ORG Sun Feb 23 01:06:17 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 4EAD4E69; Sun, 23 Feb 2014 01:06:17 +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 37ABF107F; Sun, 23 Feb 2014 01:06:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1N16Hro044296; Sun, 23 Feb 2014 01:06:17 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1N16GWf044293; Sun, 23 Feb 2014 01:06:16 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201402230106.s1N16GWf044293@svn.freebsd.org> From: Gerald Pfeifer Date: Sun, 23 Feb 2014 01:06:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345684 - in head/math/openblas: . files 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: Sun, 23 Feb 2014 01:06:17 -0000 Author: gerald Date: Sun Feb 23 01:06:16 2014 New Revision: 345684 URL: http://svnweb.freebsd.org/changeset/ports/345684 QAT: https://qat.redports.org/buildarchive/r345684/ Log: Replace the manual construction of references to the runtime path of the version of GCC we are using by _GCC_RUNTIME. Approved by: Eijiro Shibusawa (maintainer) Modified: head/math/openblas/Makefile head/math/openblas/files/patch-Makefile.system Modified: head/math/openblas/Makefile ============================================================================== --- head/math/openblas/Makefile Sun Feb 23 00:55:46 2014 (r345683) +++ head/math/openblas/Makefile Sun Feb 23 01:06:16 2014 (r345684) @@ -121,7 +121,7 @@ post-patch: -e 's+%%FIND%%+${FIND}+' \ -e 's+%%XARGS%%+${XARGS}+' \ -e 's+%%REINPLACE_CMD%%+${REINPLACE_CMD}+' \ - -e 's+%%_GCC_BUILD_DEPENDS%%+${_GCC_BUILD_DEPENDS}+' \ + -e 's+%%_GCC_RUNTIME%%+${_GCC_RUNTIME}+' \ -e 's+$$(CROSS_SUFFIX)+${LOCALBASE}/bin/+' \ ${WRKSRC}/Makefile.system .if ${PORT_OPTIONS:MOPENMP} Modified: head/math/openblas/files/patch-Makefile.system ============================================================================== --- head/math/openblas/files/patch-Makefile.system Sun Feb 23 00:55:46 2014 (r345683) +++ head/math/openblas/files/patch-Makefile.system Sun Feb 23 01:06:16 2014 (r345684) @@ -5,8 +5,8 @@ ifeq ($(OSNAME), FreeBSD) +EXTRALIB += -lm -+CCOMMON_OPT += -Wl,-rpath=%%LOCALBASE%%/lib/%%_GCC_BUILD_DEPENDS%% -+FCOMMON_OPT += -Wl,-rpath=%%LOCALBASE%%/lib/%%_GCC_BUILD_DEPENDS%% ++CCOMMON_OPT += -Wl,-rpath=%%_GCC_RUNTIME%% ++FCOMMON_OPT += -Wl,-rpath=%%_GCC_RUNTIME%% MD5SUM = md5 -r endif