diff options
Diffstat (limited to 'meta-networking/recipes-support/libtevent/libtevent_0.10.2.bb')
| -rw-r--r-- | meta-networking/recipes-support/libtevent/libtevent_0.10.2.bb | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/libtevent/libtevent_0.10.2.bb b/meta-networking/recipes-support/libtevent/libtevent_0.10.2.bb new file mode 100644 index 0000000000..21f83ad35e --- /dev/null +++ b/meta-networking/recipes-support/libtevent/libtevent_0.10.2.bb | |||
| @@ -0,0 +1,57 @@ | |||
| 1 | SUMMARY = "Hierarchical, reference counted memory pool system with destructors" | ||
| 2 | HOMEPAGE = "http://tevent.samba.org" | ||
| 3 | SECTION = "libs" | ||
| 4 | LICENSE = "LGPLv3+" | ||
| 5 | |||
| 6 | DEPENDS += "libtalloc libtirpc" | ||
| 7 | RDEPENDS_python3-tevent = "python3" | ||
| 8 | |||
| 9 | SRC_URI = "https://samba.org/ftp/tevent/tevent-${PV}.tar.gz \ | ||
| 10 | file://options-0.10.0.patch \ | ||
| 11 | file://0001-libtevent-fix-musl-libc-compile-error.patch \ | ||
| 12 | " | ||
| 13 | LIC_FILES_CHKSUM = "file://tevent.h;endline=26;md5=4e458d658cb25e21efc16f720e78b85a" | ||
| 14 | |||
| 15 | SRC_URI[md5sum] = "105c7a4dbb96f1751eb27dfd05e7fa84" | ||
| 16 | SRC_URI[sha256sum] = "f8427822e5b2878fb8b28d6f50d96848734f3f3130612fb574fdd2d2148a6696" | ||
| 17 | |||
| 18 | inherit waf-samba | ||
| 19 | |||
| 20 | PACKAGECONFIG ??= "\ | ||
| 21 | ${@bb.utils.filter('DISTRO_FEATURES', 'acl', d)} \ | ||
| 22 | ${@bb.utils.contains('DISTRO_FEATURES', 'xattr', 'attr', '', d)} \ | ||
| 23 | " | ||
| 24 | PACKAGECONFIG[acl] = "--with-acl,--without-acl,acl" | ||
| 25 | PACKAGECONFIG[attr] = "--with-attr,--without-attr,attr" | ||
| 26 | PACKAGECONFIG[libaio] = "--with-libaio,--without-libaio,libaio" | ||
| 27 | PACKAGECONFIG[libbsd] = "--with-libbsd,--without-libbsd,libbsd" | ||
| 28 | PACKAGECONFIG[libcap] = "--with-libcap,--without-libcap,libcap" | ||
| 29 | PACKAGECONFIG[valgrind] = "--with-valgrind,--without-valgrind,valgrind" | ||
| 30 | |||
| 31 | SRC_URI += "${@bb.utils.contains('PACKAGECONFIG', 'attr', '', 'file://avoid-attr-unless-wanted.patch', d)}" | ||
| 32 | |||
| 33 | S = "${WORKDIR}/tevent-${PV}" | ||
| 34 | |||
| 35 | #cross_compile cannot use preforked process, since fork process earlier than point subproces.popen | ||
| 36 | #to cross Popen | ||
| 37 | export WAF_NO_PREFORK="yes" | ||
| 38 | |||
| 39 | EXTRA_OECONF += "--disable-rpath \ | ||
| 40 | --bundled-libraries=NONE \ | ||
| 41 | --builtin-libraries=replace \ | ||
| 42 | --with-libiconv=${STAGING_DIR_HOST}${prefix}\ | ||
| 43 | --without-gettext \ | ||
| 44 | " | ||
| 45 | do_install_append() { | ||
| 46 | # add this link for cross check python module existence. eg: on x86-64 host, check python module | ||
| 47 | # under recipe-sysroot which is mips64. | ||
| 48 | cd ${D}${PYTHON_SITEPACKAGES_DIR}; ln -s _tevent.*.so _tevent.so | ||
| 49 | } | ||
| 50 | |||
| 51 | PACKAGES += "python3-tevent" | ||
| 52 | |||
| 53 | RPROVIDES_${PN}-dbg += "python3-tevent-dbg" | ||
| 54 | |||
| 55 | FILES_python3-tevent = "${libdir}/python${PYTHON_BASEVERSION}/site-packages/*" | ||
| 56 | |||
| 57 | INSANE_SKIP_${MLPREFIX}python3-tevent = "dev-so" | ||
