diff options
Diffstat (limited to 'meta-oe/recipes-extended/smartmontools/smartmontools_7.2.bb')
| -rw-r--r-- | meta-oe/recipes-extended/smartmontools/smartmontools_7.2.bb | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/smartmontools/smartmontools_7.2.bb b/meta-oe/recipes-extended/smartmontools/smartmontools_7.2.bb new file mode 100644 index 0000000000..3c01e589ca --- /dev/null +++ b/meta-oe/recipes-extended/smartmontools/smartmontools_7.2.bb | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | SUMMARY = "Control and monitor storage systems using S.M.A.R.T" | ||
| 2 | DESCRIPTION = "\ | ||
| 3 | The smartmontools package contains two utility programs (smartctl \ | ||
| 4 | and smartd) to control and monitor storage systems using the Self-\ | ||
| 5 | Monitoring, Analysis and Reporting Technology System (SMART) built \ | ||
| 6 | into most modern ATA and SCSI hard disks. In many cases, these \ | ||
| 7 | utilities will provide advanced warning of disk degradation and failure." | ||
| 8 | |||
| 9 | HOMEPAGE = "http://smartmontools.sourceforge.net/" | ||
| 10 | SECTION = "console/utils" | ||
| 11 | |||
| 12 | LICENSE = "GPLv2" | ||
| 13 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
| 14 | |||
| 15 | SRC_URI = "${SOURCEFORGE_MIRROR}/smartmontools/smartmontools-${PV}.tar.gz \ | ||
| 16 | file://initd.smartd \ | ||
| 17 | file://smartmontools.default \ | ||
| 18 | file://smartd.service \ | ||
| 19 | " | ||
| 20 | |||
| 21 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'libcap-ng selinux', d)}" | ||
| 22 | PACKAGECONFIG[libcap-ng] = "--with-libcap-ng=yes,--with-libcap-ng=no,libcap-ng" | ||
| 23 | PACKAGECONFIG[selinux] = "--with-selinux=yes,--with-selinux=no,libselinux" | ||
| 24 | |||
| 25 | SRC_URI[md5sum] = "e8d134c69ae4959a05cb56b31172ffb1" | ||
| 26 | SRC_URI[sha256sum] = "5cd98a27e6393168bc6aaea070d9e1cd551b0f898c52f66b2ff2e5d274118cd6" | ||
| 27 | |||
| 28 | inherit autotools update-rc.d systemd | ||
| 29 | |||
| 30 | SYSTEMD_SERVICE_${PN} = "smartd.service" | ||
| 31 | SYSTEMD_AUTO_ENABLE = "disable" | ||
| 32 | |||
| 33 | do_install_append () { | ||
| 34 | #install the init.d/smartd | ||
| 35 | install -d ${D}${sysconfdir}/init.d | ||
| 36 | install -p -m 0755 ${WORKDIR}/initd.smartd ${D}${sysconfdir}/init.d/smartd | ||
| 37 | install -d ${D}${sysconfdir}/default | ||
| 38 | install -p -m 0644 ${WORKDIR}/smartmontools.default ${D}${sysconfdir}/default/smartmontools | ||
| 39 | |||
| 40 | #install systemd service file | ||
| 41 | install -d ${D}${systemd_unitdir}/system | ||
| 42 | install -m 0644 ${WORKDIR}/smartd.service ${D}${systemd_unitdir}/system | ||
| 43 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' \ | ||
| 44 | -e 's,@SYSCONFDIR@,${sysconfdir},g' \ | ||
| 45 | -e 's,@SBINDIR@,${sbindir},g' \ | ||
| 46 | ${D}${systemd_unitdir}/system/smartd.service | ||
| 47 | } | ||
| 48 | |||
| 49 | INITSCRIPT_NAME = "smartd" | ||
| 50 | INITSCRIPT_PARAMS = "start 60 2 3 4 5 . stop 60 0 1 6 ." | ||
| 51 | |||
| 52 | RDEPENDS_${PN} += "mailx" | ||
