diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-21 11:28:02 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-21 11:28:02 +0000 |
commit | e423fc9d57748b50d673c044aeefd956c04affbe (patch) | |
tree | 5cd63982d212900d0d8c91110e71fae8eb8daa98 /meta/packages | |
parent | eef43c9f5571ab000c4fd1d8ca88a3dbdd47f2e2 (diff) | |
download | poky-e423fc9d57748b50d673c044aeefd956c04affbe.tar.gz |
libidl: Improve staging from OE.dev
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@914 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/libidl/libidl_0.8.3.bb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/packages/libidl/libidl_0.8.3.bb b/meta/packages/libidl/libidl_0.8.3.bb index 5a6f5800d6..e743247390 100644 --- a/meta/packages/libidl/libidl_0.8.3.bb +++ b/meta/packages/libidl/libidl_0.8.3.bb | |||
@@ -2,13 +2,16 @@ LICENSE = "LGPL" | |||
2 | DESCRIPTION = "Library for parsing CORBA IDL files" | 2 | DESCRIPTION = "Library for parsing CORBA IDL files" |
3 | SECTION = "gnome/libs" | 3 | SECTION = "gnome/libs" |
4 | DEPENDS = "glib-2.0" | 4 | DEPENDS = "glib-2.0" |
5 | PR = "r1" | 5 | PR = "r2" |
6 | 6 | ||
7 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libIDL/0.8/libIDL-${PV}.tar.bz2" | 7 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libIDL/0.8/libIDL-${PV}.tar.bz2" |
8 | S = "${WORKDIR}/libIDL-${PV}" | 8 | S = "${WORKDIR}/libIDL-${PV}" |
9 | 9 | ||
10 | inherit autotools pkgconfig | 10 | inherit autotools pkgconfig |
11 | 11 | ||
12 | # Firefox uses the libIDL-config-2 script instead of pkgconfig (for some | ||
13 | # strange reason - so we do some sed fu to fix the path there | ||
14 | |||
12 | do_stage() { | 15 | do_stage() { |
13 | oe_runmake install \ | 16 | oe_runmake install \ |
14 | prefix=${STAGING_DIR} \ | 17 | prefix=${STAGING_DIR} \ |
@@ -17,6 +20,9 @@ do_stage() { | |||
17 | libdir=${STAGING_LIBDIR} \ | 20 | libdir=${STAGING_LIBDIR} \ |
18 | datadir=${STAGING_DATADIR} \ | 21 | datadir=${STAGING_DATADIR} \ |
19 | infodir=${STAGING_INFODIR} | 22 | infodir=${STAGING_INFODIR} |
23 | |||
24 | cp ${STAGING_BINDIR}/libIDL-config-2 ${STAGING_BINDIR}/libIDL-config-2.orig | ||
25 | cat ${STAGING_BINDIR}/libIDL-config-2.orig | sed -e 's:${includedir}:${STAGING_INCDIR}:' > ${STAGING_BINDIR}/libIDL-config-2 | ||
20 | } | 26 | } |
21 | 27 | ||
22 | FILES_${PN} = "${libdir}/*.so.*" | 28 | FILES_${PN} = "${libdir}/*.so.*" |