mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
Allow this port to use secure "ssh" client instead of traditional "rsh"
client. Also add a couple of missing files to PLIST. PR: 14516 Submitted by: maintainer
This commit is contained in:
parent
8721f29715
commit
2a9b4562cd
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=23361
@ -1,5 +1,5 @@
|
||||
# New ports collection makefile for: mpich (portable mpi standard imp.)
|
||||
# Version required: 1.1.1
|
||||
# Version required: 1.1.2
|
||||
# Date created: 2 May 1998
|
||||
# Whom: dbader@eece.unm.edu
|
||||
#
|
||||
@ -18,10 +18,21 @@ MAINTAINER= dbader@eece.unm.edu
|
||||
DIST_SUBDIR= mpich
|
||||
|
||||
HAS_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --cflags="$(CFLAGS)" -prefix=$(PREFIX)/mpich
|
||||
CONFIGURE_ARGS= -cflags="${CFLAGS}" -prefix=${PREFIX}/mpich
|
||||
|
||||
# Include support for ssh client
|
||||
USE_SSH?= YES
|
||||
# Use ssh instead of rsh
|
||||
.if defined(USE_SSH) && ${USE_SSH} == YES || \
|
||||
exists(${PREFIX}/bin/ssh) && \
|
||||
(!defined(USE_SSH) || ${USE_SSH} != NO)
|
||||
RUN_DEPENDS+= ssh:${PORTSDIR}/security/ssh
|
||||
CONFIGURE_ARGS+= -rsh="${PREFIX}/bin/ssh"
|
||||
.endif
|
||||
|
||||
WRKSRC= ${WRKDIR}/mpich
|
||||
ALL_TARGET=
|
||||
MANPREFIX= $(PREFIX)/mpich
|
||||
MANPREFIX= ${PREFIX}/mpich
|
||||
MAN1= Jumpshot.1 MPI.1 chp4_servs.1 mpiCC.1 mpicc.1 mpif77.1 \
|
||||
mpif90.1 mpiman.1 mpireconfig.1 mpirun.1 tstmachines.1
|
||||
MAN3= Constants.3 MPIO_Request_c2f.3 MPIO_Request_f2c.3 \
|
||||
|
@ -115,9 +115,11 @@ mpich/build/freebsd/ch_p4/include/mpidefs.h
|
||||
mpich/build/freebsd/ch_p4/include/mpif.h
|
||||
mpich/build/freebsd/ch_p4/include/mpio.h
|
||||
mpich/build/freebsd/ch_p4/include/mpiof.h
|
||||
mpich/build/freebsd/ch_p4/lib/libampi.a
|
||||
mpich/build/freebsd/ch_p4/lib/libfmpich.a
|
||||
mpich/build/freebsd/ch_p4/lib/liblmpi.a
|
||||
mpich/build/freebsd/ch_p4/lib/libmpe.a
|
||||
mpich/build/freebsd/ch_p4/lib/libmpe_nompi.a
|
||||
mpich/build/freebsd/ch_p4/lib/libmpich++.a
|
||||
mpich/build/freebsd/ch_p4/lib/libmpich.a
|
||||
mpich/build/freebsd/ch_p4/lib/libpmpich.a
|
||||
|
@ -1,5 +1,5 @@
|
||||
# New ports collection makefile for: mpich (portable mpi standard imp.)
|
||||
# Version required: 1.1.1
|
||||
# Version required: 1.1.2
|
||||
# Date created: 2 May 1998
|
||||
# Whom: dbader@eece.unm.edu
|
||||
#
|
||||
@ -18,10 +18,21 @@ MAINTAINER= dbader@eece.unm.edu
|
||||
DIST_SUBDIR= mpich
|
||||
|
||||
HAS_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --cflags="$(CFLAGS)" -prefix=$(PREFIX)/mpich
|
||||
CONFIGURE_ARGS= -cflags="${CFLAGS}" -prefix=${PREFIX}/mpich
|
||||
|
||||
# Include support for ssh client
|
||||
USE_SSH?= YES
|
||||
# Use ssh instead of rsh
|
||||
.if defined(USE_SSH) && ${USE_SSH} == YES || \
|
||||
exists(${PREFIX}/bin/ssh) && \
|
||||
(!defined(USE_SSH) || ${USE_SSH} != NO)
|
||||
RUN_DEPENDS+= ssh:${PORTSDIR}/security/ssh
|
||||
CONFIGURE_ARGS+= -rsh="${PREFIX}/bin/ssh"
|
||||
.endif
|
||||
|
||||
WRKSRC= ${WRKDIR}/mpich
|
||||
ALL_TARGET=
|
||||
MANPREFIX= $(PREFIX)/mpich
|
||||
MANPREFIX= ${PREFIX}/mpich
|
||||
MAN1= Jumpshot.1 MPI.1 chp4_servs.1 mpiCC.1 mpicc.1 mpif77.1 \
|
||||
mpif90.1 mpiman.1 mpireconfig.1 mpirun.1 tstmachines.1
|
||||
MAN3= Constants.3 MPIO_Request_c2f.3 MPIO_Request_f2c.3 \
|
||||
|
@ -115,9 +115,11 @@ mpich/build/freebsd/ch_p4/include/mpidefs.h
|
||||
mpich/build/freebsd/ch_p4/include/mpif.h
|
||||
mpich/build/freebsd/ch_p4/include/mpio.h
|
||||
mpich/build/freebsd/ch_p4/include/mpiof.h
|
||||
mpich/build/freebsd/ch_p4/lib/libampi.a
|
||||
mpich/build/freebsd/ch_p4/lib/libfmpich.a
|
||||
mpich/build/freebsd/ch_p4/lib/liblmpi.a
|
||||
mpich/build/freebsd/ch_p4/lib/libmpe.a
|
||||
mpich/build/freebsd/ch_p4/lib/libmpe_nompi.a
|
||||
mpich/build/freebsd/ch_p4/lib/libmpich++.a
|
||||
mpich/build/freebsd/ch_p4/lib/libmpich.a
|
||||
mpich/build/freebsd/ch_p4/lib/libpmpich.a
|
||||
|
Loading…
Reference in New Issue
Block a user