meta-mellanox/meta-msn add ipmi daemon recipe

Add ipmi daemon recipe, including the systemd service file.

Change-Id: Ice5c373603b482835beb9cec59e9a5b2346f21aa
Signed-off-by: Mykola Kostenok <c_mykolak@mellanox.com>
Signed-off-by: Joel Stanley <joel@jms.id.au>
diff --git a/meta-msn/recipes-connectivity/mlx-ipmid/mlx-ipmid.inc b/meta-msn/recipes-connectivity/mlx-ipmid/mlx-ipmid.inc
new file mode 100644
index 0000000..73e7614
--- /dev/null
+++ b/meta-msn/recipes-connectivity/mlx-ipmid/mlx-ipmid.inc
@@ -0,0 +1,60 @@
+DESCRIPTION = "This is the OpenIPMI library, a library that makes simplifies building complex IPMI management software."
+SECTION = "console/network"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
+DEPENDS = " \
+    openssl \
+    popt \
+    zlib \
+    ncurses \
+    glib-2.0 \
+    gdbm \
+    dbus \
+    dbus-glib \
+"
+RDEPENDS_${PN} += " bash dbus"
+
+INC_PR = "r2"
+
+inherit autotools gettext update-alternatives systemd pkgconfig
+
+PACKAGECONFIG ??= "net-snmp"
+
+PACKAGECONFIG[net-snmp] = ",--with-ucdsnmp=no,net-snmp"
+PACKAGECONFIG[python] = "--with-python,--without-python,python,"
+PACKAGECONFIG[perl] = "--with-perl=${STAGING_BINDIR_NATIVE},--with-perl=no,perl,"
+PACKAGECONFIG[tcl] = "--with-tcl,--without-tcl,tcl,"
+
+EXTRA_OECONF = "\
+    --prefix=${prefix} \
+    --with-mellanox \
+    --with-dbus \
+    "
+
+S = "${WORKDIR}/git"
+
+PARALLEL_MAKEINST = ""
+
+SYSTEMD_PACKAGES = "${PN}"
+
+SYSTEMD_SERVICE_${PN} = " mlx_ipmid.service"
+
+
+do_install_append() {
+    install -d ${D}/etc/init.d
+    install -d ${D}/${systemd_unitdir}/system
+    install -m 644 ${WORKDIR}/mlx_ipmid.service ${D}/${systemd_unitdir}/system/mlx_ipmid.service
+    install -d ${D}${libdir}/mlx_ipmid
+    install -m 0644 ${B}/lanserv/mellanox/.libs/mellanox.so ${D}${libdir}/mlx_ipmid/
+    install -Dpm 644 ${D}/var/mlx_ipmid/mellanox/50-mlx-events-4.10.rules ${D}/lib/udev/rules.d/50-mlx-events.rules
+    install -Dpm 644 ${D}/var/mlx_ipmid/mellanox/50-mlx-hwmon-4-10-events.rules ${D}/lib/udev/rules.d/50-mlx-hwmon-events.rules
+}
+
+FILES_${PN} += "/usr/lib/perl5 \
+		/usr/lib/mlx_ipmid \
+                ${systemd_unitdir} \
+                "
+
+FILES_${PN}-dev += "/usr/lib/OpenIPMI"
+
+FILES_${PN}-dbg += "/usr/lib/perl5/auto/OpenIPMI/.debug"