diff options
author | Junqian Gordon Xu <xjqian@gmail.com> | 2008-03-18 08:29:52 +0000 |
---|---|---|
committer | Junqian Gordon Xu <xjqian@gmail.com> | 2008-03-18 08:29:52 +0000 |
commit | 486680eea259b7239fd724e51096a7d5c90a446f (patch) | |
tree | 2c926d2b4e9e455fbea0b395943ccfe52ccec306 /packages/libidl/libidl_0.8.3.bb | |
parent | bd41940d260d2a533dd15bd10344b4bf8dd8e928 (diff) |
libidl: upgrade to 0.8.10, close oebug 3961. unify
Diffstat (limited to 'packages/libidl/libidl_0.8.3.bb')
-rw-r--r-- | packages/libidl/libidl_0.8.3.bb | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/packages/libidl/libidl_0.8.3.bb b/packages/libidl/libidl_0.8.3.bb index 5f788a91d8..c4586f94f8 100644 --- a/packages/libidl/libidl_0.8.3.bb +++ b/packages/libidl/libidl_0.8.3.bb @@ -1,20 +1,13 @@ -DESCRIPTION = "Library for parsing CORBA IDL files" -SECTION = "x11/gnome/libs" -LICENSE = "LGPL" -DEPENDS = "glib-2.0" -PR = "r2" +require libidl.inc -SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libIDL/0.8/libIDL-${PV}.tar.bz2" -S = "${WORKDIR}/libIDL-${PV}" +DEPENDS = "glib-2.0" -inherit autotools pkgconfig +PR = "r3" # 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 - +do_stage_prepend() { cp ${STAGING_BINDIR}/libIDL-config-2 ${STAGING_BINDIR}/libIDL-config-2.orig cat ${STAGING_BINDIR}/libIDL-config-2.orig | sed -e 's:${includedir}:${STAGING_INCDIR}:' > ${STAGING_BINDIR}/libIDL-config-2 @@ -22,6 +15,3 @@ do_stage() { mv ${STAGING_BINDIR}/libIDL-config-2 ${STAGING_BINDIR_CROSS}/libIDL-config-2 fi } - -FILES_${PN} = "${libdir}/*.so.*" -FILES_${PN}-dev += " ${bindir}" |