diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-06-03 19:30:40 +0200 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-06-03 19:30:40 +0200 |
commit | 821c42c7f95a9d12de38e4153514f99f4d3323ca (patch) | |
tree | 44b46df95bcd264ead9b599d5ce1bf94a5e4a820 /meta-gnome/recipes-gnome/bonobo/libbonobo.inc | |
parent | 3e32248ba1f25def2b4182c9f29661a79ad597e3 (diff) | |
download | meta-openembedded-821c42c7f95a9d12de38e4153514f99f4d3323ca.tar.gz |
libbonobo: import from OE rev 7ae56b81f8cc22f9ef13a48cde000e32138948ea
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-gnome/recipes-gnome/bonobo/libbonobo.inc')
-rw-r--r-- | meta-gnome/recipes-gnome/bonobo/libbonobo.inc | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-gnome/recipes-gnome/bonobo/libbonobo.inc b/meta-gnome/recipes-gnome/bonobo/libbonobo.inc new file mode 100644 index 000000000..b4f72d7be --- /dev/null +++ b/meta-gnome/recipes-gnome/bonobo/libbonobo.inc | |||
@@ -0,0 +1,40 @@ | |||
1 | DESCRIPTION = "Bonobo CORBA interfaces library" | ||
2 | LICENSE = "GPLv2 && LGPLv2.1" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ | ||
4 | file://COPYING.LIB;md5=7fbc338309ac38fefcd64b04bb903e34" | ||
5 | SECTION = "x11/gnome/libs" | ||
6 | DEPENDS = "glib-2.0 orbit2 intltool-native libxml2" | ||
7 | |||
8 | inherit gnome | ||
9 | |||
10 | SRC_URI += "file://gtk-doc.m4 \ | ||
11 | file://gtk-doc.make \ | ||
12 | " | ||
13 | |||
14 | ORBIT_IDL_SRC = "${STAGING_BINDIR_NATIVE}/orbit-idl-2" | ||
15 | |||
16 | FILES_${PN} += "${libdir}/orbit-2.0/*.so ${libdir}/bonobo/monikers/*.so" | ||
17 | FILES_${PN}-dbg += "${libdir}/bonobo/monikers/.debug \ | ||
18 | ${libdir}/bonobo-2.0/samples/.debug ${libdir}/orbit-2.0/.debug" | ||
19 | FILES_${PN}-dev += "${libdir}/orbit-2.0/* ${libdir}/bonobo/monikers/* \ | ||
20 | ${libdir}/bonobo-2.0/samples" | ||
21 | |||
22 | LEAD_SONAME = "libbonobo-2.so" | ||
23 | |||
24 | PARALLEL_MAKE = "" | ||
25 | |||
26 | do_configure_prepend() { | ||
27 | install -d m4 | ||
28 | install ${WORKDIR}/gtk-doc.m4 m4/ | ||
29 | install ${WORKDIR}/gtk-doc.make ./ | ||
30 | } | ||
31 | |||
32 | do_compile() { | ||
33 | oe_runmake ORBIT_IDL="${ORBIT_IDL_SRC}" | ||
34 | } | ||
35 | |||
36 | do_install() { | ||
37 | oe_runmake ORBIT_IDL="${ORBIT_IDL_SRC}" DESTDIR="${D}" install | ||
38 | install -d ${D}${datadir}/idl/bonobo-activation-2.0/ | ||
39 | install idl/*.idl ${D}${datadir}/idl/bonobo-activation-2.0/ | ||
40 | } | ||