]> code.ossystems Code Review - openembedded-core.git/commitdiff
opkg: moved common stuff to opkg.inc, added S98configure
authorMarcin Juszkiewicz <hrw@openedhand.com>
Mon, 17 Mar 2008 12:58:08 +0000 (12:58 +0000)
committerMarcin Juszkiewicz <hrw@openedhand.com>
Mon, 17 Mar 2008 12:58:08 +0000 (12:58 +0000)
Signed-off-by: Marcin Juszkiewicz <hrw@openedhand.com>
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4022 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/packages/opkg/opkg-native_svn.bb
meta/packages/opkg/opkg_svn.bb

index c90c91dae5255f4ec1b03d7db5a6172e7277cf5c..d5e20e14be6ee5107c631bc2912f2adc368dba48 100644 (file)
@@ -1,4 +1,4 @@
-require opkg_svn.bb
+require opkg.inc
 
 DEPENDS = "curl-native"
 
@@ -7,4 +7,3 @@ target_libdir := "${libdir}"
 inherit native
 
 EXTRA_OECONF += "--with-opkglibdir=${target_libdir}/opkg -disable-gpg"
-
index 149f3050cf1e615ba3abdf46d323410fbfd7a84a..30461ead4d80128e19a7b20b815dedf5c83dd61d 100644 (file)
@@ -1,21 +1,33 @@
-DESCRIPTION = "Open Package Manager"
-DESCRIPTION_libopkg = "Open Package Manager Library"
-SECTION = "base"
-LICENSE = "GPL"
-DEPENDS = "curl gpgme"
-PV = "0.0+svnr${SRCREV}"
-PR = "r1"
+require opkg.inc
 
-SRC_URI = "svn://svn.openmoko.org/trunk/src/target/;module=opkg;proto=http"
-S = "${WORKDIR}/opkg"
-
-inherit autotools pkgconfig
-
-do_stage() {
-       autotools_stage_all
-}
+PR = "r2"
 
 PACKAGES =+ "libopkg-dev libopkg"
 
 FILES_libopkg-dev = "${libdir}/*.a ${libdir}/*.la ${libdir}/*.so"
 FILES_libopkg = "${libdir}/*.so.*"
+
+# Define a variable to allow distros to run configure earlier.
+# (for example, to enable loading of ethernet kernel modules before networking starts)
+OPKG_INIT_POSITION = "98"
+OPKG_INIT_POSITION_slugos = "41"
+
+pkg_postinst_opkg () {
+#!/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 "#!/bin/sh
+opkg-cl configure
+" > ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d/S${OPKG_INIT_POSITION}configure
+       chmod 0755 ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d/S${OPKG_INIT_POSITION}configure
+fi
+
+update-alternatives --install ${bindir}/opkg opkg ${bindir}/opkg-cl 100
+}
+
+pkg_postrm_opkg () {
+#!/bin/sh
+update-alternatives --remove opkg ${bindir}/opkg-cl
+}
+