From owner-svn-ports-all@freebsd.org Sun Jan 17 01:40:18 2021 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7747B4D539A; Sun, 17 Jan 2021 01:40:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DJHfp2xnxz3jdd; Sun, 17 Jan 2021 01:40:18 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 56B1D1906A; Sun, 17 Jan 2021 01:40:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10H1eIWS010316; Sun, 17 Jan 2021 01:40:18 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10H1eIBm010315; Sun, 17 Jan 2021 01:40:18 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202101170140.10H1eIBm010315@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jan 2021 01:40:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r561781 - head/math/dune-pdelab X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/math/dune-pdelab X-SVN-Commit-Revision: 561781 X-SVN-Commit-Repository: ports 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.34 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, 17 Jan 2021 01:40:18 -0000 Author: yuri Date: Sun Jan 17 01:40:17 2021 New Revision: 561781 URL: https://svnweb.freebsd.org/changeset/ports/561781 Log: math/dune-pdelab: Add missing dependencies. Modified: head/math/dune-pdelab/Makefile Modified: head/math/dune-pdelab/Makefile ============================================================================== --- head/math/dune-pdelab/Makefile Sun Jan 17 01:39:23 2021 (r561780) +++ head/math/dune-pdelab/Makefile Sun Jan 17 01:40:17 2021 (r561781) @@ -3,7 +3,7 @@ PORTNAME= dune-pdelab DISTVERSIONPREFIX= v DISTVERSION= 2.6.0rc2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org @@ -19,15 +19,19 @@ DUNE_DEPENDS= dune-common>0:math/dune-common \ dune-geometry>0:math/dune-geometry \ dune-localfunctions>0:math/dune-localfunctions \ dune-typetree>0:math/dune-typetree -BUILD_DEPENDS= ${DUNE_DEPENDS} -LIB_DEPENDS= libugL.so:math/dune-uggrid \ +BUILD_DEPENDS= ${DUNE_DEPENDS} \ + ${LOCALBASE}/mpi/openmpi/lib/libmpi.so:net/openmpi +LIB_DEPENDS= libarpack.so:math/arpack-ng \ + libdunealugrid.so:math/dune-alugrid \ + libugL.so:math/dune-uggrid \ libgmp.so:math/gmp \ libmetis.so:math/metis \ libopenblas.so:math/openblas \ libsuitesparseconfig.so:math/suitesparse \ libsuperlu.so:math/superlu \ libtbb.so:devel/tbb -RUN_DEPENDS= ${DUNE_DEPENDS} +RUN_DEPENDS= ${DUNE_DEPENDS} \ + ${LOCALBASE}/mpi/openmpi/lib/libmpi.so:net/openmpi USES= cmake compiler:c++17-lang fortran pkgconfig USE_GITLAB= yes