blob: 1c3c585d793fb924df8c63f61a976ecc73d9c79b [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Package maintenance system from Debian"
2LICENSE = "GPLv2.0+"
3SECTION = "base"
4
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005DEPENDS = "zlib bzip2 perl ncurses"
6DEPENDS_class-native = "bzip2-replacement-native zlib-native virtual/update-alternatives-native gettext-native perl-native"
Brad Bishop6e60e8b2018-02-01 10:27:11 -05007RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} perl"
8RDEPENDS_${PN}_class-native = ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009
Patrick Williamsc0f7c042017-02-23 20:41:17 -060010UPSTREAM_CHECK_URI = "${DEBIAN_MIRROR}/main/d/dpkg/"
11
Brad Bishop08902b02019-08-20 09:16:51 -040012inherit autotools gettext perlnative pkgconfig perl-version update-alternatives
Patrick Williamsc124f4f2015-09-15 14:41:29 -050013
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014PERL_class-native = "${STAGING_BINDIR_NATIVE}/perl-native/perl"
15
Brad Bishop6e60e8b2018-02-01 10:27:11 -050016export PERL_LIBDIR = "${libdir}/perl/${@get_perl_version(d)}"
17PERL_LIBDIR_class-native = "${libdir}/perl-native/perl/${@get_perl_version(d)}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050018
19EXTRA_OECONF = "\
20 --disable-dselect \
21 --enable-start-stop-daemon \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050022 --with-libz \
23 --with-libbz2 \
24 --without-libselinux \
Brad Bishop19323692019-04-05 15:28:33 -040025 TAR=tar \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050026 "
27
Brad Bishop19323692019-04-05 15:28:33 -040028EXTRA_OECONF_append_class-target = " --disable-update-alternatives DEB_HOST_ARCH=${DPKG_ARCH}"
29
Brad Bishop6e60e8b2018-02-01 10:27:11 -050030PACKAGECONFIG = "liblzma"
31PACKAGECONFIG[liblzma] = "--with-liblzma,--without-liblzma, xz"
32
Patrick Williamsc124f4f2015-09-15 14:41:29 -050033do_install_append () {
34 if [ "${PN}" = "dpkg-native" ]; then
35 # update-alternatives doesn't have an offline mode
36 rm ${D}${bindir}/update-alternatives
37 sed -i -e 's|^#!.*${bindir}/perl-native.*/perl|#!/usr/bin/env nativeperl|' ${D}${bindir}/dpkg-*
38 else
39 sed -i -e 's|^#!.*${bindir}/perl-native.*/perl|#!/usr/bin/env perl|' ${D}${bindir}/dpkg-*
40 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -050041}
42
43PROV = "virtual/update-alternatives"
44PROV_class-native = ""
45
46PROVIDES += "${PROV}"
47
48PACKAGES =+ "update-alternatives-dpkg"
49FILES_update-alternatives-dpkg = "${bindir}/update-alternatives ${localstatedir}/lib/dpkg/alternatives ${sysconfdir}/alternatives"
50RPROVIDES_update-alternatives-dpkg += "update-alternatives"
51
52PACKAGES += "${PN}-perl"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050053FILES_${PN}-perl = "${libdir}/perl/${@get_perl_version(d)}"
54
55RDEPENDS_${PN}-perl += "perl-module-carp perl-module-constant \
56 perl-module-cwd perl-module-digest \
57 perl-module-digest-md5 perl-module-errno \
58 perl-module-exporter perl-module-fcntl \
59 perl-module-feature perl-module-file-basename \
60 perl-module-file-compare perl-module-file-copy \
61 perl-module-file-find perl-module-file-path \
62 perl-module-file-spec perl-module-file-temp \
63 perl-module-list-util perl-module-overload \
64 perl-module-parent perl-module-storable \
65 perl-module-filehandle perl-module-io \
66 perl-module-io-handle perl-module-io-seekable \
67 perl-module-posix perl-module-scalar-util \
68 perl-module-selectsaver perl-module-symbol \
69 perl-module-term-ansicolor perl-module-tie-handle \
70 perl-module-tie-hash perl-module-storable \
71 perl-module-time-hires perl-module-time-piece \
72 perl-module-xsloader"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050073
Patrick Williamsc0f7c042017-02-23 20:41:17 -060074# Split out start-stop-daemon to its own package. Note that it
75# is installed in a different directory than the one used for
76# the bitbake version.
77#
78PACKAGES =+ "${PN}-start-stop"
Brad Bishop08902b02019-08-20 09:16:51 -040079FILES_${PN}-start-stop = "${sbindir}/start-stop-daemon.${BPN}"
80ALTERNATIVE_${PN}-start-stop = "start-stop-daemon"
81ALTERNATIVE_LINK_NAME[start-stop-daemon] = "${sbindir}/start-stop-daemon"
82ALTERNATIVE_PRIORITY = "100"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060083
84RDEPENDS_${PN} += "${PN}-start-stop"
85
86
Patrick Williamsc124f4f2015-09-15 14:41:29 -050087BBCLASSEXTEND = "native"