blob: 7acfb4161d1b9f605233493fd6a4a430452433c6 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Package maintenance system from Debian"
2LICENSE = "GPLv2.0+"
Andrew Geissler90fd73c2021-03-05 15:25:55 -06003HOMEPAGE = "https://salsa.debian.org/dpkg-team/dpkg"
4DESCRIPTION = "The primary interface for the dpkg suite is the dselect program. A more low-level and less user-friendly interface is available in the form of the dpkg command."
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005SECTION = "base"
6
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007DEPENDS = "zlib bzip2 perl ncurses"
8DEPENDS_class-native = "bzip2-replacement-native zlib-native virtual/update-alternatives-native gettext-native perl-native"
Brad Bishop6e60e8b2018-02-01 10:27:11 -05009RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} perl"
10RDEPENDS_${PN}_class-native = ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011
Andrew Geisslerb7d28612020-07-24 16:15:54 -050012UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060013
Brad Bishop08902b02019-08-20 09:16:51 -040014inherit autotools gettext perlnative pkgconfig perl-version update-alternatives
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016PERL_class-native = "${STAGING_BINDIR_NATIVE}/perl-native/perl"
17
Brad Bishop6e60e8b2018-02-01 10:27:11 -050018export PERL_LIBDIR = "${libdir}/perl/${@get_perl_version(d)}"
19PERL_LIBDIR_class-native = "${libdir}/perl-native/perl/${@get_perl_version(d)}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020
21EXTRA_OECONF = "\
22 --disable-dselect \
23 --enable-start-stop-daemon \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050024 --with-libz \
25 --with-libbz2 \
26 --without-libselinux \
Brad Bishop19323692019-04-05 15:28:33 -040027 TAR=tar \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028 "
29
Brad Bishop19323692019-04-05 15:28:33 -040030EXTRA_OECONF_append_class-target = " --disable-update-alternatives DEB_HOST_ARCH=${DPKG_ARCH}"
Andrew Geisslerd1e89492021-02-12 15:35:20 -060031EXTRA_OECONF_append_class-nativesdk = " --disable-update-alternatives DEB_HOST_ARCH=${DPKG_ARCH}"
Brad Bishop19323692019-04-05 15:28:33 -040032
Brad Bishop6e60e8b2018-02-01 10:27:11 -050033PACKAGECONFIG = "liblzma"
34PACKAGECONFIG[liblzma] = "--with-liblzma,--without-liblzma, xz"
35
Andrew Geisslerb7d28612020-07-24 16:15:54 -050036
37#autotools.bbclass default AUTOTOOLS_AUXDIR is ${S}, we need to under ${S}/build-aux
38AUTOTOOLS_AUXDIR = "${S}/build-aux"
39
40do_configure_prepend () {
41 mkdir -p ${AUTOTOOLS_AUXDIR}
42 # autotools_do_configure updates po/Makefile.in.in, we also need
43 # update dselect/po and scripts/po
44 cp -f ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in ${S}/dselect/po/
45 cp -f ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in ${S}/scripts/po/
46}
47
Patrick Williamsc124f4f2015-09-15 14:41:29 -050048do_install_append () {
49 if [ "${PN}" = "dpkg-native" ]; then
50 # update-alternatives doesn't have an offline mode
51 rm ${D}${bindir}/update-alternatives
Andrew Geisslerd1e89492021-02-12 15:35:20 -060052 sed -i -e 's|^#!.*${STAGING_BINDIR_NATIVE}/perl-native.*/perl|#!/usr/bin/env nativeperl|' ${D}${bindir}/dpkg-*
Patrick Williamsc124f4f2015-09-15 14:41:29 -050053 else
Andrew Geisslerd1e89492021-02-12 15:35:20 -060054 sed -i -e 's|^#!.*${STAGING_BINDIR_NATIVE}/perl-native.*/perl|#!/usr/bin/env perl|' ${D}${bindir}/dpkg-*
Patrick Williamsc124f4f2015-09-15 14:41:29 -050055 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -050056}
57
58PROV = "virtual/update-alternatives"
59PROV_class-native = ""
Andrew Geisslerd1e89492021-02-12 15:35:20 -060060PROV_class-nativesdk = ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -050061
62PROVIDES += "${PROV}"
63
64PACKAGES =+ "update-alternatives-dpkg"
65FILES_update-alternatives-dpkg = "${bindir}/update-alternatives ${localstatedir}/lib/dpkg/alternatives ${sysconfdir}/alternatives"
66RPROVIDES_update-alternatives-dpkg += "update-alternatives"
67
68PACKAGES += "${PN}-perl"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050069FILES_${PN}-perl = "${libdir}/perl/${@get_perl_version(d)}"
70
71RDEPENDS_${PN}-perl += "perl-module-carp perl-module-constant \
72 perl-module-cwd perl-module-digest \
73 perl-module-digest-md5 perl-module-errno \
74 perl-module-exporter perl-module-fcntl \
75 perl-module-feature perl-module-file-basename \
76 perl-module-file-compare perl-module-file-copy \
77 perl-module-file-find perl-module-file-path \
78 perl-module-file-spec perl-module-file-temp \
79 perl-module-list-util perl-module-overload \
80 perl-module-parent perl-module-storable \
81 perl-module-filehandle perl-module-io \
82 perl-module-io-handle perl-module-io-seekable \
83 perl-module-posix perl-module-scalar-util \
84 perl-module-selectsaver perl-module-symbol \
85 perl-module-term-ansicolor perl-module-tie-handle \
86 perl-module-tie-hash perl-module-storable \
87 perl-module-time-hires perl-module-time-piece \
88 perl-module-xsloader"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050089
Patrick Williamsc0f7c042017-02-23 20:41:17 -060090# Split out start-stop-daemon to its own package. Note that it
91# is installed in a different directory than the one used for
92# the bitbake version.
93#
94PACKAGES =+ "${PN}-start-stop"
Brad Bishop08902b02019-08-20 09:16:51 -040095FILES_${PN}-start-stop = "${sbindir}/start-stop-daemon.${BPN}"
96ALTERNATIVE_${PN}-start-stop = "start-stop-daemon"
97ALTERNATIVE_LINK_NAME[start-stop-daemon] = "${sbindir}/start-stop-daemon"
98ALTERNATIVE_PRIORITY = "100"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060099
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600100EXTRA_RDPENDS = "ldconfig"
101EXTRA_RDPENDS_libc-musl = ""
102RDEPENDS_${PN} += "${PN}-start-stop ${EXTRA_RDPENDS}"
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600103
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600104BBCLASSEXTEND = "native nativesdk"