1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

net/libfabric: Add port options for individual providers; Enclose the VERBS option in .if/.else

Requested by:	mat (VERBS option .if/.else enclosure)
This commit is contained in:
Yuri Victorovich 2018-11-08 08:54:36 +00:00
parent 8948b4a7d2
commit b7307958fc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=484440
2 changed files with 17 additions and 13 deletions

View File

@ -3,6 +3,7 @@
PORTNAME= libfabric
DISTVERSIONPREFIX= v
DISTVERSION= 1.6.2
PORTREVISION= 1
CATEGORIES= net
MAINTAINER= yuri@FreeBSD.org
@ -21,20 +22,24 @@ CONFIGURE_ARGS= --disable-static
USE_LDCONFIG= yes
CFLAGS+= -I${LOCALBASE}/include/libepoll-shim
LDFLAGS+= ${LOCALBASE}/lib/libepoll-shim.so -pthread
LDFLAGS+= ${LOCALBASE}/lib/libepoll-shim.so
OPTIONS_DEFINE= VERBS
OPTIONS_SUB= yes
VERBS_DESC= Build 'verbs' provider
VERBS_CONFIGURE_ENABLE= verbs
OPTIONS_MULTI= PROVIDERS
OPTIONS_MULTI_PROVIDERS= RXD RXM SOCKETS TCP UDP
OPTIONS_DEFAULT= ${OPTIONS_MULTI_PROVIDERS}
OPTIONS_SUB= yes
PROVIDERS_DESC= Providers to build:
.if exists(/usr/include/infiniband/verbs.h) # some earlier FreeBSD 11 systems don't have it
OPTIONS_DEFAULT+= VERBS
.else
VERBS_BROKEN= infiniband/verbs.h not available on your system
OPTIONS_MULTI_PROVIDERS+= VERBS
VERBS_PLIST_FILES= man/man7/fi_verbs.7.gz
.endif
.for p in ${OPTIONS_MULTI_PROVIDERS}
${p}_DESC= '${p:tl}' provider
${p}_CONFIGURE_ENABLE= ${p:tl}
.endfor
post-patch:
@${FIND} ${WRKSRC} -name "*.[ch]" -and -exec ${GREP} -q '<asm/types\.h>' {} \; -print | ${XARGS} ${REINPLACE_CMD} 's|<asm/types\.h>|<sys/types.h>|'
@${FIND} ${WRKSRC} -name "*.[ch]" -and -exec ${GREP} -q '<malloc\.h>' {} \; -print | ${XARGS} ${REINPLACE_CMD} 's|<malloc\.h>|<stdlib.h>|'

View File

@ -149,7 +149,6 @@ man/man3/fi_writev.3.gz
man/man7/fabric.7.gz
man/man7/fi_direct.7.gz
man/man7/fi_provider.7.gz
man/man7/fi_rxm.7.gz
man/man7/fi_sockets.7.gz
man/man7/fi_udp.7.gz
%%VERBS%%man/man7/fi_verbs.7.gz
%%RXM%%man/man7/fi_rxm.7.gz
%%SOCKETS%%man/man7/fi_sockets.7.gz
%%UDP%%man/man7/fi_udp.7.gz