From owner-svn-ports-all@freebsd.org Wed Dec 27 13:29:35 2017 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 36DCBE8D4BC; Wed, 27 Dec 2017 13:29:35 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 16E0A658D6; Wed, 27 Dec 2017 13:29:35 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 496AF1324B; Wed, 27 Dec 2017 13:29:34 +0000 (UTC) From: Jan Beich To: Yuri Victorovich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r457352 - in head/math: . sundials sundials/files References: <201712270747.vBR7lU8T066400@repo.freebsd.org> Date: Wed, 27 Dec 2017 14:29:28 +0100 In-Reply-To: <201712270747.vBR7lU8T066400@repo.freebsd.org> (Yuri Victorovich's message of "Wed, 27 Dec 2017 07:47:30 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 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: Wed, 27 Dec 2017 13:29:35 -0000 Yuri Victorovich writes: > +HYPRE_DESC= HYPRE vectors support (also enables MPI) > +PETSC_DESC= PETSc vectors support (also enables MPI) > +SUPERLUMT_DESC= Sparse matrix factorization through SUPERLUMT > +OPTIONS_SUB= yes [...] > +HYPRE_CMAKE_BOOL= HYPRE_ENABLE > +HYPRE_CMAKE_ON= -DHYPRE_INCLUDE_DIR=${LOCALBASE}/include \ > + -DHYPRE_LIBRARY_DIR=${LOCALBASE}/lib \ > + -DMPI_ENABLE:BOOL=ON > +HYPRE_LIB_DEPENDS= libHYPRE.so:science/hypre [...] > +MPI_CMAKE_ON= -DMPI_ENABLE:BOOL=ON > + > +PETSC_CMAKE_BOOL= PETSC_ENABLE > +PETSC_CMAKE_ON= -DPETSC_INCLUDE_DIR=${LOCALBASE}/include \ > + -DPETSC_LIBRARY_DIR=${LOCALBASE}/lib \ > + -DMPI_ENABLE:BOOL=ON > +PETSC_LIB_DEPENDS= libpetsc.so:science/PETSc [...] > +.include > + > +.if ${PORT_OPTIONS:MMPI} || ${PORT_OPTIONS:MHYPRE} || ${PORT_OPTIONS:MPETSC} > +LIB_DEPENDS+= libmpich.so:net/mpich2 > + > +PLIST_FILES= include/nvector/nvector_parallel.h \ > + include/sundials/sundials_mpi_types.h \ > + lib/libsundials_nvecparallel.so \ > + lib/libsundials_nvecparallel.so.${DISTVERSION:R:R} \ > + lib/libsundials_nvecparallel.so.${DISTVERSION} > +.endif Read /usr/ports/CHANGES@20150818 and try the following instead ... HYPRE_IMPLIES= MPI MPI_LIB_DEPENDS=libmpich.so:net/mpich2 MPI_CMAKE_BOOL= MPI_ENABLE MPI_PLIST_FILES=include/nvector/nvector_parallel.h \ include/sundials/sundials_mpi_types.h \ lib/libsundials_nvecparallel.so \ lib/libsundials_nvecparallel.so.${DISTVERSION:R:R} \ lib/libsundials_nvecparallel.so.${DISTVERSION} ... PETSC_IMPLIES= MPI