xref: /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/sblim-sfcb/sblim-sfcb_1.4.9.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "Small Footprint CIM Broker"
2DESCRIPTION = "\
3Small Footprint CIM Broker (sfcb) is a CIM server conforming to the CIM \
4Operations over HTTP protocol. It is robust, with low resource consumption \
5and therefore specifically suited for embedded and resource constrained \
6environments. sfcb supports providers written against the Common \
7Manageability Programming Interface (CMPI)."
8HOMEPAGE = "http://www.sblim.org"
9SECTION = "Applications/System"
10LICENSE = "EPL-1.0"
11LIC_FILES_CHKSUM = "file://COPYING;md5=f300afd598546add034364cd0a533261"
12DEPENDS = "curl libpam openssl sblim-sfc-common unzip-native"
13
14inherit features_check
15REQUIRED_DISTRO_FEATURES = "pam"
16
17SRC_URI = "http://downloads.sourceforge.net/sblim/${BP}.tar.bz2 \
18           file://sfcb.service \
19           file://sblim-sfcb-1.3.9-sfcbrepos-schema-location.patch \
20           file://sblim-sfcb-1.3.15-fix-provider-debugging.patch \
21           file://sblim-sfcb-1.3.16-maxMsgLen.patch \
22           file://sblim-sfcb-1.4.5-service.patch \
23           file://sblim-sfcb-1.3.16-multilib-man-cfg.patch \
24           file://sblim-sfcb-1.4.8-default-ecdh-curve-name.patch \
25           file://sblim-sfcb-1.4.9-fix-ftbfs.patch \
26           file://0001-include-stdint.h-system-header-for-UINT16_MAX.patch \
27           file://0001-Replace-need-for-error.h-when-it-does-not-exist.patch \
28           file://sblim-sfcb-1.4.9-fix-sfcbinst2mof.patch \
29           file://0001-Avoid-variable-definition-in-header-files.patch \
30"
31
32SRC_URI[md5sum] = "28021cdabc73690a94f4f9d57254ce30"
33SRC_URI[sha256sum] = "634a67b2f7ac3b386a79160eb44413d618e33e4e7fc74ae68b0240484af149dd"
34
35CVE_CHECK_IGNORE += "\
36    CVE-2012-3381 \
37"
38
39inherit autotools
40inherit systemd
41
42SYSTEMD_PACKAGES = "${PN}"
43SYSTEMD_SERVICE:${PN} = "sblim-sfcb.service"
44SYSTEMD_AUTO_ENABLE = "enable"
45
46LDFLAGS:append = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', ' -fuse-ld=bfd ', '', d)}"
47
48EXTRA_OECONF = '--enable-debug \
49                --enable-ssl \
50                --enable-pam \
51                --enable-ipv6 \
52                CFLAGS="${CFLAGS} -D_GNU_SOURCE"'
53
54# make all with -j option is unsafe.
55PARALLEL_MAKE = ""
56
57INSANE_SKIP:${PN} = "dev-so"
58CONFIG_SITE = "${WORKDIR}/config-site.${P}"
59
60do_install() {
61    cp -f ${S}/sfcb.cfg.pre.in ${S}/sfcb.cfg
62
63    oe_runmake DESTDIR=${D} install
64
65    install -d ${D}${systemd_unitdir}/system
66    install -m 0644 ${WORKDIR}/sfcb.service ${D}${systemd_unitdir}/system/sblim-sfcb.service
67
68    install -d ${D}${sysconfdir}/init.d
69    mv ${D}${sysconfdir}/init.d/sfcb ${D}${sysconfdir}/init.d/sblim-sfcb
70    sed -i -e 's/\/var\/lock\/subsys\/sfcb/\/var\/lock\/subsys\/sblim-sfcb/g' ${D}${sysconfdir}/init.d/sblim-sfcb
71
72    rm -rf ${D}${libdir}/sfcb/*.la
73}
74
75pkg_postinst:${PN} () {
76    $INTERCEPT_DIR/postinst_intercept delay_to_first_boot ${PKG} mlprefix=${MLPREFIX}
77}
78
79pkg_postinst_ontarget:${PN} () {
80    ${datadir}/sfcb/genSslCert.sh ${sysconfdir}/sfcb
81    ${bindir}/sfcbrepos -f
82}
83
84FILES:${PN} += "${libdir}/sfcb ${datadir}/sfcb"
85FILES:${PN}-dbg += "${libdir}/sfcb/.debug"
86
87RDEPENDS:${PN} = "perl bash"
88