From owner-svn-ports-head@freebsd.org Sun Mar 13 18:13:55 2016 Return-Path: Delivered-To: svn-ports-head@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 34CFAACF81A; Sun, 13 Mar 2016 18:13:55 +0000 (UTC) (envelope-from rakuco@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 E00AFDE5; Sun, 13 Mar 2016 18:13:54 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2DIDr88005871; Sun, 13 Mar 2016 18:13:53 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2DIDrnT005869; Sun, 13 Mar 2016 18:13:53 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201603131813.u2DIDrnT005869@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 13 Mar 2016 18:13:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411007 - in head/cad/tochnog: . 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-head@freebsd.org X-Mailman-Version: 2.1.21 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: Sun, 13 Mar 2016 18:13:55 -0000 Author: rakuco Date: Sun Mar 13 18:13:53 2016 New Revision: 411007 URL: https://svnweb.freebsd.org/changeset/ports/411007 Log: Unbreak after the math/superlu update in r410620. math/superlu no longer ships libsuperlu.a, so tochnog was failing make check-sanity. Switch the dependency to libsuperlu.so and adjust files/patch-makefile accordingly. Modified: head/cad/tochnog/Makefile head/cad/tochnog/files/patch-makefile Modified: head/cad/tochnog/Makefile ============================================================================== --- head/cad/tochnog/Makefile Sun Mar 13 17:52:30 2016 (r411006) +++ head/cad/tochnog/Makefile Sun Mar 13 18:13:53 2016 (r411007) @@ -3,7 +3,7 @@ PORTNAME= tochnog PORTVERSION= 20140100 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= cad MASTER_SITES= SF/${PORTNAME}/Tochnog%20Latest%20January%202014 DISTFILES= Sources${EXTRACT_SUFX} gid${EXTRACT_SUFX} \ @@ -50,11 +50,11 @@ BLAS_LIBS= -llapack -lblas .if ${PORT_OPTIONS:MTHREADS} ALL_TARGET= freebsd_parallel -BUILD_DEPENDS+= ${LOCALBASE}/lib/libsuperlu_mt.a:${PORTSDIR}/math/superlu_mt +LIB_DEPENDS+= libsuperlu_mt.so:${PORTSDIR}/math/superlu_mt SUPERLU= superlu_mt .else ALL_TARGET= freebsd_old -BUILD_DEPENDS+= ${LOCALBASE}/lib/libsuperlu.a:${PORTSDIR}/math/superlu +LIB_DEPENDS+= libsuperlu.so:${PORTSDIR}/math/superlu SUPERLU= superlu .endif Modified: head/cad/tochnog/files/patch-makefile ============================================================================== --- head/cad/tochnog/files/patch-makefile Sun Mar 13 17:52:30 2016 (r411006) +++ head/cad/tochnog/files/patch-makefile Sun Mar 13 18:13:53 2016 (r411007) @@ -31,7 +31,7 @@ # 3. For SuperLU_MT be sure to compile a multi threaded version # of Tochnog (sparc_parallel, alpha_parallel, linux, etc. +SUPERLU=%%LOCALBASE%% -+SUPERLU_LIB=$(SUPERLU)/lib/lib%%SUPERLU%%.a %%BLAS_LIBS%% ++SUPERLU_LIB=$(SUPERLU)/lib/lib%%SUPERLU%%.so %%BLAS_LIBS%% +SUPERLU_INCLUDE=-I$(SUPERLU)/include/%%SUPERLU%% # *********** PetSc library *******************