blob: 759ab3f36d35cff103842866ec50a86d0f12839a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# Ports collection makefile for: openmpi
# Date created: August 22, 2005
# Whom: Brooks Davis <brooks@freebsd.org>
#
# $FreeBSD$
#
# TODO:
# - etc/*.sample support
PORTNAME= openmpi
DISTVERSION= 1.2.2
PORTREVISION= 1
CATEGORIES= net parallel
MASTER_SITES= http://www.open-mpi.org/software/ompi/v1.2/downloads/
MAINTAINER= brooks@FreeBSD.org
COMMENT= A High Performance Message Passing Library
LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo
USE_BZIP2= yes
HAS_CONFIGURE= yes
USE_GMAKE= yes
MPIBASE?= mpi
MPIDIR?= ${MPIBASE}/${UNIQUENAME}
PLIST_SUB+= MPIBASE=${MPIBASE}
PLIST_SUB+= MPIDIR=${MPIDIR}
CONFIGURE_ARGS+= --prefix=${PREFIX}/${MPIDIR} ${CONFIGURE_TARGET}
USE_LDCONFIG= ${PREFIX}/${MPIDIR}/lib \
${PREFIX}/${MPIDIR}/lib/openmpi
MANPREFIX= ${PREFIX}/${MPIDIR}
.include "${.CURDIR}/Makefile.man"
.include <bsd.port.pre.mk>
USE_FORTRAN= yes
CONFIGURE_ENV+= F77=${F77} FC=${FC}
.if ${ARCH} == "sparc64"
BROKEN= Does not compile on sparc64
.endif
.if exists(${LOCALBASE}/lib/libtorque.so)
WITH_TORQUE= yes
.endif
.if defined(WITH_TORQUE)
LIB_DEPENDS+= torque.0:${PORTSDIR}/sysutils/torque
CONFIGURE_ARGS+= --with-tm=${LOCALBASE}
PLIST_SUB+= TORQUE=""
.else
PLIST_SUB+= TORQUE="@comment "
.endif
#######################################################################
# The following targets are for the port maintainer. Use at your own #
# risk, no user-serviceable parts inside. #
# #
# XXX: we should generate MLINKS programaticaly, but it would take #
# some effort and there's only one entry at this time. #
#######################################################################
build-plist: Makefile
${RM} ${PLIST}
${FIND} ${PREFIX}/${MPIDIR} -name man -prune -o -type f -print | \
${SED} -e 's|${PREFIX}/${MPIDIR}|%%MPIDIR%%|' | \
${SORT} >> ${PLIST}
${FIND} ${PREFIX}/${MPIDIR} -name man -prune -o -type l -print | \
${SED} -e 's|${PREFIX}/${MPIDIR}|%%MPIDIR%%|' | \
${SORT} >> ${PLIST}
${FIND} ${PREFIX}/${MPIDIR} -type d | \
egrep -v "${PREFIX}/${MPIDIR}$$" | \
${SED} -e 's|${PREFIX}/${MPIDIR}|@dirrm %%MPIDIR%%|' | \
${SORT} -r >> ${PLIST}
${ECHO} "@dirrmtry %%MPIDIR%%" \
>> ${PLIST}
${ECHO} "@dirrmtry %%MPIBASE%%" \
>> ${PLIST}
@echo "# Do not edit! Auto-generated file." > ${.CURDIR}/Makefile.man
@echo "# See build-plist target in Makefile." >> ${.CURDIR}/Makefile.man
@echo "#" >> ${.CURDIR}/Makefile.man
@echo "MLINKS=mpic++.1 mpiCC.1" >> ${.CURDIR}/Makefile.man
${FIND} ${PREFIX}/${MPIDIR}/man -type f | \
${SED} -e 's|.*man\([0-9LN]\)/\(.*\)|MAN\1+=\2|' -e 's/\.gz$$//' \
>> ${.CURDIR}/Makefile.man
.include <bsd.port.post.mk>
|