summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/opkg/opkg.inc
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2012-01-20 11:05:16 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-24 11:54:20 +0000
commit930424bf2f5593256dcacac6e7cf98699fc2a0db (patch)
tree143397dca6c2a486335c5f1c24f0eb6821c873ef /meta/recipes-devtools/opkg/opkg.inc
parentc6c3f8745090c00eb02614a003925c533660e813 (diff)
downloadpoky-930424bf2f5593256dcacac6e7cf98699fc2a0db.tar.gz
opkg: move common code & metadata into opkg.inc to reduce code duplication
(From OE-Core rev: da70cc9f33845d62943afc78168e56931d0a9b15) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/opkg/opkg.inc')
-rw-r--r--meta/recipes-devtools/opkg/opkg.inc43
1 files changed, 41 insertions, 2 deletions
diff --git a/meta/recipes-devtools/opkg/opkg.inc b/meta/recipes-devtools/opkg/opkg.inc
index 3e350e8197..b03eaf7643 100644
--- a/meta/recipes-devtools/opkg/opkg.inc
+++ b/meta/recipes-devtools/opkg/opkg.inc
@@ -11,6 +11,7 @@ DEPENDS_virtclass-native = "curl-native"
11DEPENDS_virtclass-nativesdk = "curl-nativesdk" 11DEPENDS_virtclass-nativesdk = "curl-nativesdk"
12 12
13PE = "1" 13PE = "1"
14PR_INC = "r6"
14 15
15FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/opkg" 16FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/opkg"
16 17
@@ -31,8 +32,46 @@ EXTRA_OECONF += "--with-opkglibdir=${localstatedir}/lib"
31EXTRA_OECONF_virtclass-native = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl" 32EXTRA_OECONF_virtclass-native = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl"
32EXTRA_OECONF_virtclass-nativesdk = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl" 33EXTRA_OECONF_virtclass-nativesdk = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl"
33 34
34#PROVIDES_append_virtclass-native = "virtual/update-alternatives-native" 35PROVIDES += "virtual/update-alternatives"
35#RPROVIDES_${PN} += "update-alternatives-native" 36RPROVIDES_update-alternatives-cworth += "update-alternatives"
37RCONFLICTS_update-alternatives-cworth = "update-alternatives-dpkg"
38RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} opkg-config-base"
39RDEPENDS_${PN}_virtclass-native = ""
40RDEPENDS_${PN}_virtclass-nativesdk = ""
41PACKAGE_ARCH_update-alternatives-cworth = "all"
42RREPLACES_${PN} = "opkg-nogpg"
43
44PACKAGES =+ "libopkg${PKGSUFFIX}-dev libopkg${PKGSUFFIX} update-alternatives-cworth${PKGSUFFIX}"
45
46FILES_update-alternatives-cworth${PKGSUFFIX} = "${bindir}/update-alternatives"
47FILES_libopkg${PKGSUFFIX}-dev = "${libdir}/*.a ${libdir}/*.la ${libdir}/*.so"
48FILES_libopkg${PKGSUFFIX} = "${libdir}/*.so.* ${localstatedir}/lib/opkg/"
49
50# We need to create the lock directory
51do_install_append() {
52 install -d ${D}${localstatedir}/lib/opkg
53}
54
55pkg_postinst_${PN} () {
56#!/bin/sh
57if [ "x$D" != "x" ]; then
58 install -d $D${sysconfdir}/rcS.d
59 # this happens at S98 where our good 'ole packages script used to run
60 echo "#!/bin/sh
61opkg-cl configure
62rm -f /${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure
63" > $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure
64 chmod 0755 $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure
65fi
66
67update-alternatives --install ${bindir}/opkg opkg ${bindir}/opkg-cl 100
68}
69
70pkg_postrm_${PN} () {
71#!/bin/sh
72update-alternatives --remove opkg ${bindir}/opkg-cl
73}
74
36 75
37BBCLASSEXTEND = "native nativesdk" 76BBCLASSEXTEND = "native nativesdk"
38 77