mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-03 02:10:04 +00:00
corosync_2.3.4: add new recipe
The Corosync Cluster Engine and Application Programming Interfaces. Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
@@ -0,0 +1,61 @@
|
|||||||
|
SUMMARY = "The Corosync Cluster Engine and Application Programming Interfaces"
|
||||||
|
DESCRIPTION = "This package contains the Corosync Cluster Engine Executive, several default \
|
||||||
|
APIs and libraries, default configuration files, and an init script."
|
||||||
|
HOMEPAGE = "http://corosync.github.io/corosync/"
|
||||||
|
|
||||||
|
SECTION = "base"
|
||||||
|
|
||||||
|
inherit autotools pkgconfig systemd
|
||||||
|
|
||||||
|
SRC_URI = "http://build.clusterlabs.org/corosync/releases/${BP}.tar.gz \
|
||||||
|
"
|
||||||
|
|
||||||
|
SRC_URI[md5sum] = "4b0f36a1dc014527e5b192265dbd7e70"
|
||||||
|
SRC_URI[sha256sum] = "3dae93fb1cf5c560295253b0560cbc25421ed053ee373852864f3a60c03247d4"
|
||||||
|
|
||||||
|
LICENSE = "BSD"
|
||||||
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=a85eb4ce24033adb6088dd1d6ffc5e5d"
|
||||||
|
|
||||||
|
DEPENDS = "groff-native nss libqb"
|
||||||
|
|
||||||
|
SYSTEMD_SERVICE_${PN} = "corosync.service corosync-notifyd.service"
|
||||||
|
SYSTEMD_AUTO_ENABLE = "enable"
|
||||||
|
|
||||||
|
INITSCRIPT_NAME = "corosync-daemon"
|
||||||
|
|
||||||
|
PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
|
||||||
|
|
||||||
|
PACKAGECONFIG[systemd] = "--enable-systemd --with-systemddir=${systemd_unitdir}/system/,--with-systemddir="
|
||||||
|
|
||||||
|
EXTRA_OECONF = "--disable-nss \
|
||||||
|
--with-upstartdir=%{_sysconfdir}/init \
|
||||||
|
"
|
||||||
|
EXTRA_OECONF += " --enable-nss "
|
||||||
|
|
||||||
|
do_configure_prepend() {
|
||||||
|
( cd ${S}
|
||||||
|
${S}/autogen.sh )
|
||||||
|
}
|
||||||
|
|
||||||
|
do_install_append() {
|
||||||
|
install -d ${D}${sysconfdir}/sysconfig/
|
||||||
|
install -d ${D}/${sysconfdir}/init.d
|
||||||
|
install -m 0644 ${S}/init/corosync.sysconfig.example ${D}${sysconfdir}/sysconfig/corosync
|
||||||
|
install -m 0644 ${S}/init/corosync-notifyd.conf.in ${D}${sysconfdir}/sysconfig/corosync-notifyd.conf
|
||||||
|
install -m 0644 ${S}/init/corosync.conf.in ${D}${sysconfdir}/sysconfig/corosync.conf
|
||||||
|
install -m 0644 ${S}/init/corosync.in ${D}${sysconfdir}/init.d/corosync
|
||||||
|
install -m 0644 ${S}/init/corosync-notifyd.in ${D}${sysconfdir}/init.d/corosync-notifyd
|
||||||
|
|
||||||
|
if ${@base_contains('DISTRO_FEATURES','systemd','true','false',d)}; then
|
||||||
|
install -d ${D}${systemd_unitdir}/system
|
||||||
|
install -m 0644 ${S}/init/corosync.service.in ${D}${systemd_unitdir}/system/corosync.service
|
||||||
|
install -m 0644 ${S}/init/corosync-notifyd.service.in ${D}${systemd_unitdir}/system/corosync-notifyd.service
|
||||||
|
sed -i -e 's,@INITWRAPPERSDIR@,${sysconfdir}/init.d,g' ${D}${systemd_unitdir}/system/corosync.service
|
||||||
|
sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/corosync-notifyd.service
|
||||||
|
sed -i -e 's,@SBINDIR@,${base_sbindir},g' ${D}${systemd_unitdir}/system/corosync-notifyd.service
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
RDEPENDS_${PN} += "bash"
|
||||||
|
|
||||||
|
FILES_${PN}-dbg += "${libexecdir}/lcrso/.debug"
|
||||||
Reference in New Issue
Block a user