aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/openlmi/openlmi-providers_0.6.0.bb
blob: 2eda65320d4145621c78a90e0a1befd38942bb46 (plain)
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
SUMMARY = "Set of basic CIM providers"
DESCRIPTION = "\
openlmi-providers is set of (usually) small CMPI providers (agents) for \
basic monitoring and management of host system using Common Information \
Model (CIM)."
HOMEPAGE = "http://www.openlmi.org/"
LICENSE = "LGPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=7c13b3376cea0ce68d2d2da0a1b3a72c"
SECTION = "System/Management"
DEPENDS = "konkretcmpi-native konkretcmpi sblim-sfcb sblim-cmpi-devel cim-schema-exper lmsensors libuser swig swig-native dbus udev systemd-systemctl-native pciutils"

SRC_URI = "http://fedorahosted.org/released/${BPN}/${BP}.tar.gz \
           file://0001-fix-error.patch \
           file://0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch \
          "
SRC_URI[md5sum] = "5904f23cf494946237cfbbdbe644a3cd"
SRC_URI[sha256sum] = "e2b2fbeaec45a83905d0da3b87da83904d9cd94c1b86312f844587b3fff11f56"

inherit cmake
LDFLAGS_append = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', ' -fuse-ld=bfd ', '', d)}"
EXTRA_OECMAKE = " \
                 -DWITH-DEVASSISTANT=OFF \
                 -DWITH-JOURNALD=OFF \
                 -DWITH-SERVICE=OFF \
                 -DWITH-SERVICE-LEGACY=ON \
                 -DWITH-ACCOUNT=OFF \
                 -DWITH-PCP=OFF \
                 -DWITH-REALMD=OFF \
                 -DWITH-FAN=OFF \
                 -DWITH-LOCALE=OFF \
                 -DWITH-INDSENDER=OFF \
                 -DWITH-JOBMANAGER=OFF \
                 -DWITH-SSSD=OFF \
                 -DWITH-SELINUX=OFF \
                 -DWITH-SOFTWARE-DBUS=ON \
                 ${@base_conditional("libdir", "/usr/lib64", "-DLIB_SUFFIX=64", "", d)} \
                 ${@base_conditional("libdir", "/usr/lib32", "-DLIB_SUFFIX=32", "", d)} \
               "

do_configure_prepend() {
    export CMAKE_INSTALL_DATDIR="${STAGING_DATADIR}"
}

do_install_append() {
    if [ -d ${D}${prefix}${sysconfidr} ]; then
        mv ${D}${prefix}${sysconfdir} ${D}${sysconfdir}
    fi
}

FILES_${PN} =+ "${libdir}/cmpi/libcmpiLMI* ${prefix}/libexec*"
FILES_${PN}-dev =+ "${datadir}/cmake*"
FILES_${PN}-dbg =+ "${libdir}/cmpi/.debug*"

RDEPENDS_${PN} = "python"

PNBLACKLIST[openlmi-providers] ?= "Depends on blacklisted lmsensors - the recipe will be removed on 2017-09-01 unless the issue is fixed"