mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
414a2297cb
- Add EXAMPLES option [1] - Fix COMMENT declaration, use ?= so that slave can overide it - Add LICENSE_FILE - Convert to options helpers, test framework - Remove MPI option and move it's all functionality to slave port This allows removal of setting PKGNAMESUFFIX in master port depending on options selected which is deprecated. Move LIB_DEPENDS on mpich2 to slave, declare CONFLICTS_INSTALL, MPICH_ARG in such way that can be overidden by the slave. PR: 211454 [1] Submitted by: Iblis Lin [1]
22 lines
480 B
Makefile
22 lines
480 B
Makefile
# Created by: Thierry Thomas <thierry@pompo.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= arpack-ng
|
|
PKGNAMESUFFIX= -mpich
|
|
|
|
COMMENT= Revised Argand library for solving large-scale eigenvalue problems with MPI support
|
|
|
|
LIB_DEPENDS+= libmpich.so.8:net/mpich2
|
|
|
|
MASTERDIR= ${.CURDIR}/../../math/arpack-ng
|
|
|
|
MPICH_ARG= --enable-mpi
|
|
CONFLICTS_INSTALL= arpack-ng-3.*
|
|
|
|
PLIST_FILES+= lib/libparpack.a \
|
|
lib/libparpack.so \
|
|
lib/libparpack.so.2 \
|
|
lib/libparpack.so.2.0.0
|
|
|
|
.include "${MASTERDIR}/Makefile"
|