diff options
author | Koen Kooi <koen@openembedded.org> | 2006-10-03 17:42:58 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2006-10-03 17:42:58 +0000 |
commit | dac73415c1d8a09ab1c085b62c566496dc2b1711 (patch) | |
tree | 542fd9dca73a906b2f6f3f05692f61623a6c8204 /packages/dpkg/dpkg.inc | |
parent | 8754b50f6dcb3d25ec6c35a1080a9845f947f039 (diff) |
dpkg: sync with poky
Diffstat (limited to 'packages/dpkg/dpkg.inc')
-rw-r--r-- | packages/dpkg/dpkg.inc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/dpkg/dpkg.inc b/packages/dpkg/dpkg.inc index 3c3f29c304..349f31a7b6 100644 --- a/packages/dpkg/dpkg.inc +++ b/packages/dpkg/dpkg.inc @@ -2,9 +2,33 @@ DESCRIPTION = "Package maintenance system for Debian." LICENSE = "GPL" SECTION = "base" DEPENDS = "ncurses zlib" +DEPENDS_${PN} += "update-alternatives" + MAINTAINER = "Chris Larson <kergoth@handhelds.org>" SRC_URI = "${DEBIAN_MIRROR}/main/d/dpkg/dpkg_${PV}.tar.gz" S = "${WORKDIR}/dpkg-${PV}" PARALLEL_MAKE = "" + +inherit autotools gettext + +DPKG_INIT_POSITION = "98" +DPKG_INIT_POSITION_slugos = "41" + +pkg_postinst_dpkg () { +#!/bin/sh +if [ "x$D" != "x" ]; then + install -d ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d + # this happens at S98 where our good 'ole packages script used to run + echo -e "#!/bin/sh + dpkg --configure -a +" > ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}configure + chmod 0755 ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d/S${DPKG_INIT_POSITION}configure +fi +} + +do_configure () { + echo >> m4/compiler.m4 + autotools_do_configure +} |