1SUMMARY = "Package maintenance system from Debian"
2LICENSE = "GPLv2.0+"
3SECTION = "base"
4
5DEPENDS = "zlib bzip2 perl ncurses"
6DEPENDS_class-native = "bzip2-replacement-native zlib-native virtual/update-alternatives-native gettext-native perl-native"
7RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} perl"
8RDEPENDS_${PN}_class-native = ""
9
10UPSTREAM_CHECK_URI = "${DEBIAN_MIRROR}/main/d/dpkg/"
11
12inherit autotools gettext perlnative pkgconfig perl-version update-alternatives
13
14PERL_class-native = "${STAGING_BINDIR_NATIVE}/perl-native/perl"
15
16export PERL_LIBDIR = "${libdir}/perl/${@get_perl_version(d)}"
17PERL_LIBDIR_class-native = "${libdir}/perl-native/perl/${@get_perl_version(d)}"
18
19EXTRA_OECONF = "\
20		--disable-dselect \
21		--enable-start-stop-daemon \
22		--with-libz \
23		--with-libbz2 \
24		--without-libselinux \
25		TAR=tar \
26		"
27
28EXTRA_OECONF_append_class-target = " --disable-update-alternatives DEB_HOST_ARCH=${DPKG_ARCH}"
29
30PACKAGECONFIG = "liblzma"
31PACKAGECONFIG[liblzma] = "--with-liblzma,--without-liblzma, xz"
32
33do_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
41}
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"
53FILES_${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"
73
74# 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"
79FILES_${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"
83
84RDEPENDS_${PN} += "${PN}-start-stop"
85
86
87BBCLASSEXTEND = "native"
88