From 4d2cb79dcecd056742f411a328f9f1f1113bf689 Mon Sep 17 00:00:00 2001 From: Frans Meulenbroeks Date: Tue, 26 Oct 2010 14:05:34 +0200 Subject: hdparm: updated to 9.35 also added a separate package for the wiper script (previously unpackaged) rationale for making it an additional package is because the script depends on gawk and bash etc. Signed-off-by: Frans Meulenbroeks --- recipes/hdparm/hdparm_9.15.bb | 24 ------------------------ recipes/hdparm/hdparm_9.35.bb | 31 +++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 24 deletions(-) delete mode 100644 recipes/hdparm/hdparm_9.15.bb create mode 100644 recipes/hdparm/hdparm_9.35.bb (limited to 'recipes/hdparm') diff --git a/recipes/hdparm/hdparm_9.15.bb b/recipes/hdparm/hdparm_9.15.bb deleted file mode 100644 index e9388582f7..0000000000 --- a/recipes/hdparm/hdparm_9.15.bb +++ /dev/null @@ -1,24 +0,0 @@ -DESCRIPTION = "hdparm is a Linux shell utility for viewing \ -and manipulating various IDE drive and driver parameters." -SECTION = "console/utils" -PRIORITY = "optional" -LICENSE = "BSD" - -SRC_URI = "${SOURCEFORGE_MIRROR}/hdparm/hdparm-${PV}.tar.gz " - -do_install () { - install -d ${D}/${base_sbindir} ${D}/${mandir}/man8 - oe_runmake 'DESTDIR=${D}' 'sbindir=${base_sbindir}' install - mv ${D}${base_sbindir}/hdparm ${D}${base_sbindir}/hdparm.${PN} -} - -pkg_postinst_${PN} () { - update-alternatives --install ${base_sbindir}/hdparm hdparm hdparm.${PN} 100 -} - -pkg_prerm_${PN} () { - update-alternatives --remove hdparm hdparm.${PN} -} - -SRC_URI[md5sum] = "0524dd10ad986285ff4eeb3507f7471c" -SRC_URI[sha256sum] = "689a413119c4d670ed95b9ac24511655c4805db678ad93866ab1036a0ba4d6bf" diff --git a/recipes/hdparm/hdparm_9.35.bb b/recipes/hdparm/hdparm_9.35.bb new file mode 100644 index 0000000000..8b9bbd7a5a --- /dev/null +++ b/recipes/hdparm/hdparm_9.35.bb @@ -0,0 +1,31 @@ +DESCRIPTION = "hdparm is a Linux shell utility for viewing \ +and manipulating various IDE drive and driver parameters." +SECTION = "console/utils" +PRIORITY = "optional" +LICENSE = "BSD" + +PACKAGES += "wiper" + +FILES_wiper = "${bindir}/wiper.sh" +FILES_${PN} = "${base_sbindir} ${mandir}" + +RDEPENDS_wiper = "bash gawk stat" + +SRC_URI = "${SOURCEFORGE_MIRROR}/hdparm/hdparm-${PV}.tar.gz " +SRC_URI[md5sum] = "520996cc36b69212c3907df351296702" +SRC_URI[sha256sum] = "b778e5f42d918226892417986dc135e783e7a1b7b3986a4b1f637bcf51366f5f" + +do_install () { + install -d ${D}/${base_sbindir} ${D}/${mandir}/man8 ${D}/${bindir} + oe_runmake 'DESTDIR=${D}' 'sbindir=${base_sbindir}' install + mv ${D}${base_sbindir}/hdparm ${D}${base_sbindir}/hdparm.${PN} + cp ${S}/wiper/wiper.sh ${D}/${bindir} +} + +pkg_postinst_${PN} () { + update-alternatives --install ${base_sbindir}/hdparm hdparm hdparm.${PN} 100 +} + +pkg_prerm_${PN} () { + update-alternatives --remove hdparm hdparm.${PN} +} -- cgit 1.2.3-korg