diff options
Diffstat (limited to 'meta/recipes-support/debianutils/debianutils_4.8.6.3.bb')
| -rw-r--r-- | meta/recipes-support/debianutils/debianutils_4.8.6.3.bb | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/meta/recipes-support/debianutils/debianutils_4.8.6.3.bb b/meta/recipes-support/debianutils/debianutils_4.8.6.3.bb new file mode 100644 index 0000000000..a69d01e0f9 --- /dev/null +++ b/meta/recipes-support/debianutils/debianutils_4.8.6.3.bb | |||
| @@ -0,0 +1,55 @@ | |||
| 1 | SUMMARY = "Miscellaneous utilities specific to Debian" | ||
| 2 | SECTION = "base" | ||
| 3 | LICENSE = "GPLv2 & SMAIL_GPL" | ||
| 4 | LIC_FILES_CHKSUM = "file://debian/copyright;md5=f01a5203d50512fc4830b4332b696a9f" | ||
| 5 | |||
| 6 | SRC_URI = "http://snapshot.debian.org/archive/debian/20190717T213444Z/pool/main/d/${BPN}/${BPN}_${PV}.tar.xz" | ||
| 7 | # the package is taken from snapshots.debian.org; that source is static and goes stale | ||
| 8 | # so we check the latest upstream from a directory that does get updated | ||
| 9 | UPSTREAM_CHECK_URI = "${DEBIAN_MIRROR}/main/d/${BPN}/" | ||
| 10 | |||
| 11 | SRC_URI[md5sum] = "ca57cc6621275346d7d516ab0b5fa1f5" | ||
| 12 | SRC_URI[sha256sum] = "2cc7de3afc6df1cf6d00af9938efac7ee8f739228e548e512ddc186b6a7be221" | ||
| 13 | |||
| 14 | inherit autotools update-alternatives | ||
| 15 | |||
| 16 | do_configure_prepend() { | ||
| 17 | sed -i -e 's:tempfile.1 which.1:which.1:g' ${S}/Makefile.am | ||
| 18 | } | ||
| 19 | |||
| 20 | do_install_append() { | ||
| 21 | if [ "${base_bindir}" != "${bindir}" ]; then | ||
| 22 | # Debian places some utils into ${base_bindir} as does busybox | ||
| 23 | install -d ${D}${base_bindir} | ||
| 24 | for app in run-parts tempfile; do | ||
| 25 | mv ${D}${bindir}/$app ${D}${base_bindir}/$app | ||
| 26 | done | ||
| 27 | fi | ||
| 28 | } | ||
| 29 | |||
| 30 | # Note that we package the update-alternatives name. | ||
| 31 | # | ||
| 32 | PACKAGES =+ "${PN}-run-parts" | ||
| 33 | FILES_${PN}-run-parts = "${base_bindir}/run-parts.debianutils" | ||
| 34 | |||
| 35 | RDEPENDS_${PN} += "${PN}-run-parts" | ||
| 36 | RDEPENDS_${PN}_class-native = "" | ||
| 37 | |||
| 38 | ALTERNATIVE_PRIORITY="30" | ||
| 39 | ALTERNATIVE_${PN} = "add-shell installkernel remove-shell savelog tempfile which" | ||
| 40 | |||
| 41 | ALTERNATIVE_PRIORITY_${PN}-run-parts = "60" | ||
| 42 | ALTERNATIVE_${PN}-run-parts = "run-parts" | ||
| 43 | |||
| 44 | ALTERNATIVE_${PN}-doc = "which.1" | ||
| 45 | ALTERNATIVE_LINK_NAME[which.1] = "${mandir}/man1/which.1" | ||
| 46 | |||
| 47 | ALTERNATIVE_LINK_NAME[add-shell]="${sbindir}/add-shell" | ||
| 48 | ALTERNATIVE_LINK_NAME[installkernel]="${sbindir}/installkernel" | ||
| 49 | ALTERNATIVE_LINK_NAME[remove-shell]="${sbindir}/remove-shell" | ||
| 50 | ALTERNATIVE_LINK_NAME[run-parts]="${base_bindir}/run-parts" | ||
| 51 | ALTERNATIVE_LINK_NAME[savelog]="${bindir}/savelog" | ||
| 52 | ALTERNATIVE_LINK_NAME[tempfile]="${base_bindir}/tempfile" | ||
| 53 | ALTERNATIVE_LINK_NAME[which]="${bindir}/which" | ||
| 54 | |||
| 55 | BBCLASSEXTEND = "native" | ||
