summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-16 09:51:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-17 09:53:04 +0100
commit8e27d952f8b9c7d8c36816b4792e0837a19754e5 (patch)
treed4ed0791e46c43a763d7326068c1407721232d0f
parentd31f8e1ee0ba314f8367e4baf6e0d535e5d3744f (diff)
downloadpoky-8e27d952f8b9c7d8c36816b4792e0837a19754e5.tar.gz
man-db: Add compression PACKAGECONFIG entries
Add PACKAGECONFIG entries for various compression algorithms to ensure builds are deterministic. (From OE-Core rev: 65b847856e44ef83ead3a0efb48ea19dc6c9df4a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/man-db/man-db_2.9.4.bb11
1 files changed, 11 insertions, 0 deletions
diff --git a/meta/recipes-extended/man-db/man-db_2.9.4.bb b/meta/recipes-extended/man-db/man-db_2.9.4.bb
index c4cdbcc3b4..b068af95d8 100644
--- a/meta/recipes-extended/man-db/man-db_2.9.4.bb
+++ b/meta/recipes-extended/man-db/man-db_2.9.4.bb
@@ -10,6 +10,10 @@ SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/man-db/man-db-${PV}.tar.xz \
10 file://man_db.conf-avoid-multilib-install-file-conflict.patch" 10 file://man_db.conf-avoid-multilib-install-file-conflict.patch"
11SRC_URI[sha256sum] = "b66c99edfad16ad928c889f87cf76380263c1609323c280b3a9e6963fdb16756" 11SRC_URI[sha256sum] = "b66c99edfad16ad928c889f87cf76380263c1609323c280b3a9e6963fdb16756"
12 12
13# remove at next version upgrade or when output changes
14PR = "r1"
15HASHEQUIV_HASH_VERSION .= ".2"
16
13DEPENDS = "libpipeline gdbm groff-native base-passwd" 17DEPENDS = "libpipeline gdbm groff-native base-passwd"
14RDEPENDS:${PN} += "base-passwd" 18RDEPENDS:${PN} += "base-passwd"
15PACKAGE_WRITE_DEPS += "base-passwd" 19PACKAGE_WRITE_DEPS += "base-passwd"
@@ -22,6 +26,13 @@ inherit gettext pkgconfig autotools systemd
22EXTRA_OECONF = "--with-pager=less --with-systemdsystemunitdir=${systemd_unitdir}/system" 26EXTRA_OECONF = "--with-pager=less --with-systemdsystemunitdir=${systemd_unitdir}/system"
23EXTRA_AUTORECONF += "-I ${S}/gl/m4" 27EXTRA_AUTORECONF += "-I ${S}/gl/m4"
24 28
29PACKAGECONFIG[bzip2] = "--with-bzip2=bzip2,ac_cv_prog_have_bzip2='',bzip2"
30PACKAGECONFIG[gzip] = "--with-gzip=gzip,ac_cv_prog_have_gzip='',gzip"
31PACKAGECONFIG[lzip] = "--with-lzip=lzip,ac_cv_prog_have_lzip='',lzip"
32PACKAGECONFIG[lzma] = "--with-lzma=lzma,ac_cv_prog_have_lzma='',xz"
33PACKAGECONFIG[zstd] = "--with-zstd=zstd,ac_cv_prog_have_zstd='',zstd"
34PACKAGECONFIG[xz] = "--with-xz=xz,ac_cv_prog_have_xz='',xz"
35
25do_install() { 36do_install() {
26 autotools_do_install 37 autotools_do_install
27 38