From owner-svn-ports-all@freebsd.org Thu Jun 9 15:29:39 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 93DDCAEF916; Thu, 9 Jun 2016 15:29:39 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48D0B1F83; Thu, 9 Jun 2016 15:29:39 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u59FTcvX022117; Thu, 9 Jun 2016 15:29:38 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u59FTcCX022116; Thu, 9 Jun 2016 15:29:38 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201606091529.u59FTcCX022116@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Thu, 9 Jun 2016 15:29:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416610 - head/math/libflame 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.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: Thu, 09 Jun 2016 15:29:39 -0000 Author: adamw Date: Thu Jun 9 15:29:38 2016 New Revision: 416610 URL: https://svnweb.freebsd.org/changeset/ports/416610 Log: libraries are declared with LIB_DEPENDS, not RUN_DEPENDS. Committed under "just fix it." Modified: head/math/libflame/Makefile Modified: head/math/libflame/Makefile ============================================================================== --- head/math/libflame/Makefile Thu Jun 9 15:24:55 2016 (r416609) +++ head/math/libflame/Makefile Thu Jun 9 15:29:38 2016 (r416610) @@ -124,19 +124,19 @@ WITH_BLAS?= reference .if ! ${PORT_OPTIONS:MBUILTIN_BLAS} .if ${WITH_BLAS} == atlas -RUN_DEPENDS += ${LOCALBASE}/lib/libatlas.so:math/atlas +LIB_DEPENDS+= libatlas.so:math/atlas BLAS= -lptf77blas .elif ${WITH_BLAS} == atlas_c -RUN_DEPENDS += ${LOCALBASE}/lib/libatlas.so:math/atlas +LIB_DEPENDS+= libatlas.so:math/atlas BLAS= -lptcblas .elif ${WITH_BLAS} == gotoblas -RUN_DEPENDS += ${LOCALBASE}/lib/libgoto2p.so:math/gotoblas +LIB_DEPENDS+= libgoto2p:math/gotoblas BLAS= -lgoto2p .elif ${WITH_BLAS} == reference -RUN_DEPENDS += ${LOCALBASE}/lib/libblas.so:math/blas +LIB_DEPENDS+= libblas.so:math/blas BLAS= -lblas .elif ${WITH_BLAS} == reference_c -RUN_DEPENDS += ${LOCALBASE}/lib/libgslcblas.so:math/gsl +LIB_DEPENDS+= libgslcblas.so:math/gsl BLAS= -lgslcblas .endif #WITH_BLAS .endif #WITH_BUILTIN_BLAS @@ -144,19 +144,19 @@ BLAS= -lgslcblas .if ${PORT_OPTIONS:MEXTERNAL_LAPACK} .if !empty(WITH_BLAS:Matlas*) .if ${PORT_OPTIONS:MBUILTIN_BLAS} -RUN_DEPENDS += ${LOCALBASE}/lib/libatlas.so:math/atlas +LIB_DEPENDS+= libatlas.so:math/atlas .endif LAPACK= -lalapack -lptcblas -lptf77blas .elif ${WITH_BLAS} == gotoblas .if ${PORT_OPTIONS:MBUILTIN_BLAS} -RUN_DEPENDS += ${LOCALBASE}/lib/libgoto2p.so:math/gotoblas +LIB_DEPENDS+= libgoto2p:math/gotoblas .endif LAPACK= -lgoto2p .elif !empty(WITH_BLAS:Mreference*) -RUN_DEPENDS += ${LOCALBASE}/lib/liblapack.so:math/lapack +LIB_DEPENDS+= liblapack.so:math/lapack LAPACK= -llapack .if ${PORT_OPTIONS:MBUILTIN_BLAS} || ${PORT_OPTIONS:MCBLAS} -RUN_DEPENDS += ${LOCALBASE}/lib/libblas.so:math/blas +LIB_DEPENDS+= libblas.so:math/blas LAPACK+= -lblas .endif .endif #WITH_BLAS