diff options
Diffstat (limited to 'recipes-extended/librdmacm/librdmacm_1.1.0.bb')
| -rw-r--r-- | recipes-extended/librdmacm/librdmacm_1.1.0.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/recipes-extended/librdmacm/librdmacm_1.1.0.bb b/recipes-extended/librdmacm/librdmacm_1.1.0.bb new file mode 100644 index 0000000..30a0c94 --- /dev/null +++ b/recipes-extended/librdmacm/librdmacm_1.1.0.bb | |||
| @@ -0,0 +1,41 @@ | |||
| 1 | SUMMARY = "Userspace RDMA Connection Manager" | ||
| 2 | DESCRIPTION = "\ | ||
| 3 | User space RDMA 'socket' protocol and libraries for establising RDMA\ | ||
| 4 | communication. Includes both Infiniband specific and general RDMA\ | ||
| 5 | communication management libraries for unreliable datagram, reliable\ | ||
| 6 | connected, and multicast data transfers.\ | ||
| 7 | Also includes ACM (communication management assistant) service." | ||
| 8 | |||
| 9 | HOMEPAGE = "http://www.openfabrics.org/downloads/rdmacm/" | ||
| 10 | SECTION = "libs/devel" | ||
| 11 | |||
| 12 | LICENSE = "BSD" | ||
| 13 | LIC_FILES_CHKSUM = "file://COPYING;md5=39cc3044d68741f9005da73e9b92db95" | ||
| 14 | |||
| 15 | DEPENDS = "virtual/libibverbs" | ||
| 16 | |||
| 17 | # Repo is at http://git.openfabrics.org/git?p=~shefty/librdmacm.git | ||
| 18 | SRC_URI = "https://www.openfabrics.org/downloads/rdmacm/${BPN}-${PV}.tar.gz \ | ||
| 19 | file://0001-librdmacm-needs-libdl.patch" | ||
| 20 | |||
| 21 | SRC_URI[md5sum] = "9459e523002978ef6e7b852e01d8b29e" | ||
| 22 | SRC_URI[sha256sum] = "8f10848d4810585d6d70b443abc876c1db8df5e9b8b07e095c7e6eaf4ac380c5" | ||
| 23 | |||
| 24 | inherit autotools | ||
| 25 | |||
| 26 | # Allow plug-in symlinks. | ||
| 27 | INSANE_SKIP_${PN} += "dev-so" | ||
| 28 | |||
| 29 | PACKAGES += "${PN}-utils" | ||
| 30 | FILES_${PN} = "${libdir}/*.so.* ${libdir}/rsocket/*.so*" | ||
| 31 | FILES_${PN}-utils = "${bindir}" | ||
| 32 | FILES_${PN}-staticdev += "${libdir}/rsocket/librspreload.a" | ||
| 33 | FILES_${PN}-dbg += "${libdir}/rsocket/.debug" | ||
| 34 | |||
| 35 | PACKAGECONFIG ??= "" | ||
| 36 | PACKAGECONFIG[valgrind] = "--with-valgrind,--without-valgrind,valgrind," | ||
| 37 | |||
| 38 | do_install_append() { | ||
| 39 | rm -f ${D}${libdir}/librdmacm.la | ||
| 40 | rm -f ${D}${libdir}/rsocket/librspreload.la | ||
| 41 | } | ||
