diff options
Diffstat (limited to 'meta-oe/recipes-extended/openlmi/openlmi-providers_0.6.0.bb')
-rw-r--r-- | meta-oe/recipes-extended/openlmi/openlmi-providers_0.6.0.bb | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/meta-oe/recipes-extended/openlmi/openlmi-providers_0.6.0.bb b/meta-oe/recipes-extended/openlmi/openlmi-providers_0.6.0.bb deleted file mode 100644 index 2eda65320..000000000 --- a/meta-oe/recipes-extended/openlmi/openlmi-providers_0.6.0.bb +++ /dev/null | |||
@@ -1,56 +0,0 @@ | |||
1 | SUMMARY = "Set of basic CIM providers" | ||
2 | DESCRIPTION = "\ | ||
3 | openlmi-providers is set of (usually) small CMPI providers (agents) for \ | ||
4 | basic monitoring and management of host system using Common Information \ | ||
5 | Model (CIM)." | ||
6 | HOMEPAGE = "http://www.openlmi.org/" | ||
7 | LICENSE = "LGPLv2+" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=7c13b3376cea0ce68d2d2da0a1b3a72c" | ||
9 | SECTION = "System/Management" | ||
10 | DEPENDS = "konkretcmpi-native konkretcmpi sblim-sfcb sblim-cmpi-devel cim-schema-exper lmsensors libuser swig swig-native dbus udev systemd-systemctl-native pciutils" | ||
11 | |||
12 | SRC_URI = "http://fedorahosted.org/released/${BPN}/${BP}.tar.gz \ | ||
13 | file://0001-fix-error.patch \ | ||
14 | file://0001-fix-lib64-can-not-be-shiped-in-64bit-target.patch \ | ||
15 | " | ||
16 | SRC_URI[md5sum] = "5904f23cf494946237cfbbdbe644a3cd" | ||
17 | SRC_URI[sha256sum] = "e2b2fbeaec45a83905d0da3b87da83904d9cd94c1b86312f844587b3fff11f56" | ||
18 | |||
19 | inherit cmake | ||
20 | LDFLAGS_append = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', ' -fuse-ld=bfd ', '', d)}" | ||
21 | EXTRA_OECMAKE = " \ | ||
22 | -DWITH-DEVASSISTANT=OFF \ | ||
23 | -DWITH-JOURNALD=OFF \ | ||
24 | -DWITH-SERVICE=OFF \ | ||
25 | -DWITH-SERVICE-LEGACY=ON \ | ||
26 | -DWITH-ACCOUNT=OFF \ | ||
27 | -DWITH-PCP=OFF \ | ||
28 | -DWITH-REALMD=OFF \ | ||
29 | -DWITH-FAN=OFF \ | ||
30 | -DWITH-LOCALE=OFF \ | ||
31 | -DWITH-INDSENDER=OFF \ | ||
32 | -DWITH-JOBMANAGER=OFF \ | ||
33 | -DWITH-SSSD=OFF \ | ||
34 | -DWITH-SELINUX=OFF \ | ||
35 | -DWITH-SOFTWARE-DBUS=ON \ | ||
36 | ${@base_conditional("libdir", "/usr/lib64", "-DLIB_SUFFIX=64", "", d)} \ | ||
37 | ${@base_conditional("libdir", "/usr/lib32", "-DLIB_SUFFIX=32", "", d)} \ | ||
38 | " | ||
39 | |||
40 | do_configure_prepend() { | ||
41 | export CMAKE_INSTALL_DATDIR="${STAGING_DATADIR}" | ||
42 | } | ||
43 | |||
44 | do_install_append() { | ||
45 | if [ -d ${D}${prefix}${sysconfidr} ]; then | ||
46 | mv ${D}${prefix}${sysconfdir} ${D}${sysconfdir} | ||
47 | fi | ||
48 | } | ||
49 | |||
50 | FILES_${PN} =+ "${libdir}/cmpi/libcmpiLMI* ${prefix}/libexec*" | ||
51 | FILES_${PN}-dev =+ "${datadir}/cmake*" | ||
52 | FILES_${PN}-dbg =+ "${libdir}/cmpi/.debug*" | ||
53 | |||
54 | RDEPENDS_${PN} = "python" | ||
55 | |||
56 | PNBLACKLIST[openlmi-providers] ?= "Depends on blacklisted lmsensors - the recipe will be removed on 2017-09-01 unless the issue is fixed" | ||