diff options
author | Koen Kooi <koen@openembedded.org> | 2007-05-15 14:39:31 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-05-15 14:39:31 +0000 |
commit | 28e00515f2a910387221a0ee7ec340eb25829d82 (patch) | |
tree | ed892263f0b99eaa8d1a2f4af29e12773488a610 | |
parent | ba8c7591b5ceaed691d4ab7542660a4e72b4ca9f (diff) |
libidl: merge r1698 from poky:
libidl: use binconfig.bbclass to mangle paths instead of trying to it hand
-rw-r--r-- | packages/libidl/libidl_0.8.6.bb | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/packages/libidl/libidl_0.8.6.bb b/packages/libidl/libidl_0.8.6.bb index ccc93e291a..33a1154357 100644 --- a/packages/libidl/libidl_0.8.6.bb +++ b/packages/libidl/libidl_0.8.6.bb @@ -2,25 +2,19 @@ DESCRIPTION = "Library for parsing CORBA IDL files" SECTION = "x11/gnome/libs" LICENSE = "LGPL" DEPENDS = "glib-2.0 libidl-native" -PR = "r2" +PR = "r3" SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libIDL/0.8/libIDL-${PV}.tar.bz2" S = "${WORKDIR}/libIDL-${PV}" -inherit autotools pkgconfig +BINCONFIG_GLOB = "*-config-2" +inherit autotools pkgconfig binconfig # Firefox uses the libIDL-config-2 script instead of pkgconfig (for some # strange reason - so we do some sed fu to fix the path there do_stage() { autotools_stage_all - - cat ${S}/libIDL-config-2 | sed -e 's:${includedir}:${STAGING_INCDIR}:' > ${STAGING_BINDIR}/libIDL-config-2 - - if [ "${STAGING_BINDIR}" != "${STAGING_BINDIR_CROSS}" ]; then - mv ${STAGING_BINDIR}/libIDL-config-2 ${STAGING_BINDIR_CROSS}/libIDL-config-2 - fi - } FILES_${PN} = "${libdir}/*.so.*" |