diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-01-20 11:05:16 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-24 11:54:20 +0000 |
commit | 930424bf2f5593256dcacac6e7cf98699fc2a0db (patch) | |
tree | 143397dca6c2a486335c5f1c24f0eb6821c873ef /meta/recipes-devtools/opkg/opkg.inc | |
parent | c6c3f8745090c00eb02614a003925c533660e813 (diff) | |
download | poky-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.inc | 43 |
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" | |||
11 | DEPENDS_virtclass-nativesdk = "curl-nativesdk" | 11 | DEPENDS_virtclass-nativesdk = "curl-nativesdk" |
12 | 12 | ||
13 | PE = "1" | 13 | PE = "1" |
14 | PR_INC = "r6" | ||
14 | 15 | ||
15 | FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/opkg" | 16 | FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/opkg" |
16 | 17 | ||
@@ -31,8 +32,46 @@ EXTRA_OECONF += "--with-opkglibdir=${localstatedir}/lib" | |||
31 | EXTRA_OECONF_virtclass-native = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl" | 32 | EXTRA_OECONF_virtclass-native = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl" |
32 | EXTRA_OECONF_virtclass-nativesdk = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl" | 33 | EXTRA_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" | 35 | PROVIDES += "virtual/update-alternatives" |
35 | #RPROVIDES_${PN} += "update-alternatives-native" | 36 | RPROVIDES_update-alternatives-cworth += "update-alternatives" |
37 | RCONFLICTS_update-alternatives-cworth = "update-alternatives-dpkg" | ||
38 | RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} opkg-config-base" | ||
39 | RDEPENDS_${PN}_virtclass-native = "" | ||
40 | RDEPENDS_${PN}_virtclass-nativesdk = "" | ||
41 | PACKAGE_ARCH_update-alternatives-cworth = "all" | ||
42 | RREPLACES_${PN} = "opkg-nogpg" | ||
43 | |||
44 | PACKAGES =+ "libopkg${PKGSUFFIX}-dev libopkg${PKGSUFFIX} update-alternatives-cworth${PKGSUFFIX}" | ||
45 | |||
46 | FILES_update-alternatives-cworth${PKGSUFFIX} = "${bindir}/update-alternatives" | ||
47 | FILES_libopkg${PKGSUFFIX}-dev = "${libdir}/*.a ${libdir}/*.la ${libdir}/*.so" | ||
48 | FILES_libopkg${PKGSUFFIX} = "${libdir}/*.so.* ${localstatedir}/lib/opkg/" | ||
49 | |||
50 | # We need to create the lock directory | ||
51 | do_install_append() { | ||
52 | install -d ${D}${localstatedir}/lib/opkg | ||
53 | } | ||
54 | |||
55 | pkg_postinst_${PN} () { | ||
56 | #!/bin/sh | ||
57 | if [ "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 | ||
61 | opkg-cl configure | ||
62 | rm -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 | ||
65 | fi | ||
66 | |||
67 | update-alternatives --install ${bindir}/opkg opkg ${bindir}/opkg-cl 100 | ||
68 | } | ||
69 | |||
70 | pkg_postrm_${PN} () { | ||
71 | #!/bin/sh | ||
72 | update-alternatives --remove opkg ${bindir}/opkg-cl | ||
73 | } | ||
74 | |||
36 | 75 | ||
37 | BBCLASSEXTEND = "native nativesdk" | 76 | BBCLASSEXTEND = "native nativesdk" |
38 | 77 | ||