blob: 04fe85c4a8176ad42eea536d7fd193b99b4a9b36 [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
Andrew Geisslerb7d28612020-07-24 16:15:54 -050010UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060011
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
Andrew Geisslerb7d28612020-07-24 16:15:54 -050033
34#autotools.bbclass default AUTOTOOLS_AUXDIR is ${S}, we need to under ${S}/build-aux
35AUTOTOOLS_AUXDIR = "${S}/build-aux"
36
37do_configure_prepend () {
38 mkdir -p ${AUTOTOOLS_AUXDIR}
39 # autotools_do_configure updates po/Makefile.in.in, we also need
40 # update dselect/po and scripts/po
41 cp -f ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in ${S}/dselect/po/
42 cp -f ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in ${S}/scripts/po/
43}
44
Patrick Williamsc124f4f2015-09-15 14:41:29 -050045do_install_append () {
46 if [ "${PN}" = "dpkg-native" ]; then
47 # update-alternatives doesn't have an offline mode
48 rm ${D}${bindir}/update-alternatives
49 sed -i -e 's|^#!.*${bindir}/perl-native.*/perl|#!/usr/bin/env nativeperl|' ${D}${bindir}/dpkg-*
50 else
51 sed -i -e 's|^#!.*${bindir}/perl-native.*/perl|#!/usr/bin/env perl|' ${D}${bindir}/dpkg-*
52 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -050053}
54
55PROV = "virtual/update-alternatives"
56PROV_class-native = ""
57
58PROVIDES += "${PROV}"
59
60PACKAGES =+ "update-alternatives-dpkg"
61FILES_update-alternatives-dpkg = "${bindir}/update-alternatives ${localstatedir}/lib/dpkg/alternatives ${sysconfdir}/alternatives"
62RPROVIDES_update-alternatives-dpkg += "update-alternatives"
63
64PACKAGES += "${PN}-perl"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050065FILES_${PN}-perl = "${libdir}/perl/${@get_perl_version(d)}"
66
67RDEPENDS_${PN}-perl += "perl-module-carp perl-module-constant \
68 perl-module-cwd perl-module-digest \
69 perl-module-digest-md5 perl-module-errno \
70 perl-module-exporter perl-module-fcntl \
71 perl-module-feature perl-module-file-basename \
72 perl-module-file-compare perl-module-file-copy \
73 perl-module-file-find perl-module-file-path \
74 perl-module-file-spec perl-module-file-temp \
75 perl-module-list-util perl-module-overload \
76 perl-module-parent perl-module-storable \
77 perl-module-filehandle perl-module-io \
78 perl-module-io-handle perl-module-io-seekable \
79 perl-module-posix perl-module-scalar-util \
80 perl-module-selectsaver perl-module-symbol \
81 perl-module-term-ansicolor perl-module-tie-handle \
82 perl-module-tie-hash perl-module-storable \
83 perl-module-time-hires perl-module-time-piece \
84 perl-module-xsloader"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050085
Patrick Williamsc0f7c042017-02-23 20:41:17 -060086# Split out start-stop-daemon to its own package. Note that it
87# is installed in a different directory than the one used for
88# the bitbake version.
89#
90PACKAGES =+ "${PN}-start-stop"
Brad Bishop08902b02019-08-20 09:16:51 -040091FILES_${PN}-start-stop = "${sbindir}/start-stop-daemon.${BPN}"
92ALTERNATIVE_${PN}-start-stop = "start-stop-daemon"
93ALTERNATIVE_LINK_NAME[start-stop-daemon] = "${sbindir}/start-stop-daemon"
94ALTERNATIVE_PRIORITY = "100"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060095
96RDEPENDS_${PN} += "${PN}-start-stop"
97
98
Patrick Williamsc124f4f2015-09-15 14:41:29 -050099BBCLASSEXTEND = "native"