diff options
Diffstat (limited to 'meta-oe/recipes-extended/cfengine/cfengine_3.9.0.bb')
| -rw-r--r-- | meta-oe/recipes-extended/cfengine/cfengine_3.9.0.bb | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/cfengine/cfengine_3.9.0.bb b/meta-oe/recipes-extended/cfengine/cfengine_3.9.0.bb new file mode 100644 index 0000000000..0bd5f32425 --- /dev/null +++ b/meta-oe/recipes-extended/cfengine/cfengine_3.9.0.bb | |||
| @@ -0,0 +1,71 @@ | |||
| 1 | # | ||
| 2 | # Copyright (C) 2014 - 2016 Wind River Systems, Inc. | ||
| 3 | # | ||
| 4 | SUMMARY = "CFEngine is an IT infrastructure automation framework" | ||
| 5 | |||
| 6 | DESCRIPTION = "CFEngine is an IT infrastructure automation framework \ | ||
| 7 | that helps engineers, system administrators and other stakeholders \ | ||
| 8 | in an IT system to manage and understand IT infrastructure throughout \ | ||
| 9 | its lifecycle. CFEngine takes systems from Build to Deploy, Manage and Audit." | ||
| 10 | |||
| 11 | HOMEPAGE = "http://cfengine.com" | ||
| 12 | |||
| 13 | LICENSE = "GPLv3" | ||
| 14 | LIC_FILES_CHKSUM = "file://LICENSE;md5=cd59c3650c8b7ff36bab1cc6587b097a" | ||
| 15 | |||
| 16 | DEPENDS = "attr tokyocabinet" | ||
| 17 | |||
| 18 | SRC_URI = "https://cfengine-package-repos.s3.amazonaws.com/tarballs/${BP}.tar.gz \ | ||
| 19 | file://change-hard-coded-lib-path.patch \ | ||
| 20 | file://set-path-of-default-config-file.patch \ | ||
| 21 | " | ||
| 22 | |||
| 23 | SRC_URI[md5sum] = "63da39655cfca30ca885fcc4a1bf8aa4" | ||
| 24 | SRC_URI[sha256sum] = "32a38aedf1199c2361e1335e0d4a1d98f9efa7cd591bcb647f35c7395bb66f2d" | ||
| 25 | |||
| 26 | inherit autotools systemd | ||
| 27 | |||
| 28 | export EXPLICIT_VERSION="${PV}" | ||
| 29 | |||
| 30 | SYSTEMD_SERVICE_${PN} = "cfengine3.service cfengine3-web.service" | ||
| 31 | SYSTEMD_AUTO_ENABLE_${PN} = "disable" | ||
| 32 | |||
| 33 | PACKAGECONFIG ??= "libpcre openssl \ | ||
| 34 | ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'pam', '', d)} \ | ||
| 35 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)} \ | ||
| 36 | " | ||
| 37 | PACKAGECONFIG[libxml2] = "--with-libxml2=yes,--with-libxml2=no,libxml2," | ||
| 38 | PACKAGECONFIG[mysql] = "--with-mysql=yes,--with-mysql=no,mysql," | ||
| 39 | PACKAGECONFIG[postgresql] = "--with-postgresql=yes,--with-postgresql=no,postgresql," | ||
| 40 | PACKAGECONFIG[acl] = "--with-libacl=yes,--with-libacl=no,acl," | ||
| 41 | PACKAGECONFIG[libvirt] = "--with-libvirt=yes,--with-libvirt=no,libvirt," | ||
| 42 | PACKAGECONFIG[libpcre] = "--with-pcre=yes,--with-pcre=no,libpcre," | ||
| 43 | PACKAGECONFIG[openssl] = "--with-openssl=yes,--with-openssl=no,openssl," | ||
| 44 | PACKAGECONFIG[pam] = "--with-pam=yes,--with-pam=no,libpam," | ||
| 45 | PACKAGECONFIG[libyaml] = "--with-libyaml,--without-libyaml,libyaml," | ||
| 46 | PACKAGECONFIG[systemd] = "--with-systemd-service=${systemd_system_unitdir},--without-systemd-service" | ||
| 47 | PACKAGECONFIG[libcurl] = "--with-libcurl,--without-libcurl,curl," | ||
| 48 | |||
| 49 | EXTRA_OECONF = "hw_cv_func_va_copy=yes --with-init-script=${sysconfdir}/init.d --with-tokyocabinet" | ||
| 50 | |||
| 51 | do_install_append() { | ||
| 52 | install -d ${D}${localstatedir}/${BPN}/bin | ||
| 53 | for f in `ls ${D}${bindir}`; do | ||
| 54 | ln -s ${bindir}/`basename $f` ${D}${localstatedir}/${BPN}/bin/ | ||
| 55 | done | ||
| 56 | |||
| 57 | install -d ${D}${sysconfdir}/default | ||
| 58 | cat << EOF > ${D}${sysconfdir}/default/cfengine3 | ||
| 59 | RUN_CF_SERVERD=1 | ||
| 60 | RUN_CF_EXECD=1 | ||
| 61 | RUN_CF_MONITORD=1 | ||
| 62 | RUN_CF_HUB=0 | ||
| 63 | EOF | ||
| 64 | |||
| 65 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | ||
| 66 | install -m 0755 -D ${D}${sysconfdir}/init.d/cfengine3 ${D}${datadir}/${BPN}/cfengine3 | ||
| 67 | sed -i -e 's#/etc/init.d#${datadir}/${BPN}#' ${D}${systemd_system_unitdir}/*.service | ||
| 68 | fi | ||
| 69 | } | ||
| 70 | |||
| 71 | RDEPENDS_${PN} += "${BPN}-masterfiles" | ||
