mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
88 lines
3.1 KiB
BlitzBasic
88 lines
3.1 KiB
BlitzBasic
SUMMARY = "Hierarchical, reference counted memory pool system with destructors"
|
|
HOMEPAGE = "https://ldb.samba.org"
|
|
SECTION = "libs"
|
|
LICENSE = "LGPL-3.0-or-later & LGPL-2.1-or-later & GPL-3.0-or-later"
|
|
|
|
DEPENDS += "libtdb libtalloc libtevent popt cmocka"
|
|
RDEPENDS:pyldb += "python3"
|
|
|
|
export PYTHONHASHSEED="1"
|
|
export PYTHONARCHDIR = "${PYTHON_SITEPACKAGES_DIR}"
|
|
|
|
SRC_URI = "http://samba.org/ftp/ldb/ldb-${PV}.tar.gz \
|
|
file://0001-do-not-import-target-module-while-cross-compile.patch \
|
|
file://0002-ldb-Add-configure-options-for-packages.patch \
|
|
file://0003-Fix-pyext_PATTERN-for-cross-compilation.patch \
|
|
file://run-ptest \
|
|
"
|
|
|
|
PACKAGECONFIG ??= "\
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'acl', d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'xattr', 'attr', '', d)} \
|
|
"
|
|
PACKAGECONFIG[acl] = "--with-acl,--without-acl,acl"
|
|
PACKAGECONFIG[attr] = "--with-attr,--without-attr,attr"
|
|
PACKAGECONFIG[ldap] = ",,openldap"
|
|
PACKAGECONFIG[libbsd] = "--with-libbsd,--without-libbsd,libbsd"
|
|
PACKAGECONFIG[libcap] = "--with-libcap,--without-libcap,libcap"
|
|
PACKAGECONFIG[valgrind] = "--with-valgrind,--without-valgrind,valgrind"
|
|
PACKAGECONFIG[lmdb] = ",--without-ldb-lmdb,lmdb,"
|
|
|
|
SRC_URI += "${@bb.utils.contains('PACKAGECONFIG', 'ldap', '', 'file://avoid-openldap-unless-wanted.patch', d)}"
|
|
|
|
LIC_FILES_CHKSUM = "file://pyldb.h;endline=24;md5=dfbd238cecad76957f7f860fbe9adade \
|
|
file://man/ldb.3.xml;beginline=261;endline=262;md5=137f9fd61040c1505d1aa1019663fd08 \
|
|
file://tools/ldbdump.c;endline=19;md5=a7d4fc5d1f75676b49df491575a86a42"
|
|
|
|
SRC_URI[sha256sum] = "b68ce6eb0ccd2870fa3c8c334f2028b5d16606fd41308696c17b71959f7bf59f"
|
|
|
|
inherit pkgconfig waf-samba ptest
|
|
|
|
S = "${WORKDIR}/ldb-${PV}"
|
|
|
|
# Cross_compile cannot use preforked process, since fork process earlier than point subproces.popen
|
|
# to cross Popen
|
|
export WAF_NO_PREFORK="yes"
|
|
|
|
EXTRA_OECONF += "--disable-rpath \
|
|
--disable-rpath-install \
|
|
--bundled-libraries=NONE \
|
|
--builtin-libraries=replace \
|
|
--with-modulesdir=${libdir}/ldb/modules \
|
|
--with-privatelibdir=${libdir}/ldb \
|
|
--with-libiconv=${STAGING_DIR_HOST}${prefix}\
|
|
"
|
|
|
|
PACKAGES =+ "pyldb pyldb-dbg pyldb-dev"
|
|
|
|
NOAUTOPACKAGEDEBUG = "1"
|
|
|
|
FILES:${PN} += "${libdir}/ldb/*"
|
|
FILES:${PN}-dbg += "${bindir}/.debug/* \
|
|
${libdir}/.debug/* \
|
|
${libdir}/ldb/.debug/* \
|
|
${libdir}/ldb/modules/ldb/.debug/*"
|
|
|
|
FILES:pyldb = "${PYTHON_SITEPACKAGES_DIR}/* \
|
|
${libdir}/libpyldb-util.*.so.* \
|
|
"
|
|
FILES:pyldb-dbg = "${PYTHON_SITEPACKAGES_DIR}/.debug \
|
|
${libdir}/.debug/libpyldb-util.*.so.*"
|
|
FILES:pyldb-dev = "${libdir}/libpyldb-util.*.so"
|
|
|
|
# Prevent third_party/waf/waflib/Configure.py checking host's path which is
|
|
# incorrect for cross building.
|
|
export PREFIX = "/"
|
|
export LIBDIR = "${libdir}"
|
|
export BINDIR = "${bindir}"
|
|
|
|
do_configure:prepend() {
|
|
# For a clean rebuild
|
|
rm -fr bin/
|
|
}
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
install -m 0755 ${B}/bin/test_ldb_* ${D}${PTEST_PATH}/tests/
|
|
}
|