summaryrefslogtreecommitdiffstats
path: root/meta-gnome/recipes-gnome/orbit2/orbit2_2.14.17.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-gnome/recipes-gnome/orbit2/orbit2_2.14.17.bb')
-rw-r--r--meta-gnome/recipes-gnome/orbit2/orbit2_2.14.17.bb48
1 files changed, 44 insertions, 4 deletions
diff --git a/meta-gnome/recipes-gnome/orbit2/orbit2_2.14.17.bb b/meta-gnome/recipes-gnome/orbit2/orbit2_2.14.17.bb
index 8709cc0264..fb7e93eebd 100644
--- a/meta-gnome/recipes-gnome/orbit2/orbit2_2.14.17.bb
+++ b/meta-gnome/recipes-gnome/orbit2/orbit2_2.14.17.bb
@@ -1,6 +1,46 @@
1require orbit2.inc 1DESCRIPTION = "CORBA ORB"
2 2SECTION = "x11/gnome/libs"
3PR = "r1" 3LICENSE = "GPL-2.0"
4 4LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
5SRC_NAME = "ORBit2"
6SHRT_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}"
7SRC_URI = "${GNOME_MIRROR}/${SRC_NAME}/${SHRT_VER}/${SRC_NAME}-${PV}.tar.bz2 \
8 file://configure-lossage.patch \
9 file://pkgconfig-fix.patch \
10 file://gtk-doc.m4 \
11 file://gtk-doc.make"
5SRC_URI[md5sum] = "10bfb957fa4a8935a0b4afaee7d71df7" 12SRC_URI[md5sum] = "10bfb957fa4a8935a0b4afaee7d71df7"
6SRC_URI[sha256sum] = "62bfce3f678f9347a19c766944e8aef7b89bc32b25ac23eb3e4c25929ce8974c" 13SRC_URI[sha256sum] = "62bfce3f678f9347a19c766944e8aef7b89bc32b25ac23eb3e4c25929ce8974c"
14
15PR = "r2"
16BBCLASSEXTEND = "native"
17
18IDL_COMPILER_DEPENDS = "orbit2-native"
19IDL_COMPILER_DEPENDS_virtclass-native = " "
20DEPENDS = "libidl popt gtk-doc ${IDL_COMPILER_DEPENDS}"
21
22# IDL_COMPILER_DEPENDS_virtclass-native for some reason didn't work and orbit2-native
23# was still in orbit2-native DEPENDS causing circular dependency
24DEPENDS_virtclass-native = "libidl-native popt-native gtk-doc-native"
25PARALLEL_MAKE = ""
26
27
28FILES_${PN} += "${libdir}/orbit-2.0/*.so"
29FILES_${PN}-dev += "${libdir}/orbit-2.0/*.a ${libdir}/orbit-2.0/*.la"
30FILES_${PN}-dbg += "${libdir}/orbit-2.0/.debug"
31
32S = "${WORKDIR}/${SRC_NAME}-${PV}"
33
34LEAD_SONAME = "libORBit-2.so"
35
36inherit autotools pkgconfig
37
38EXTRA_OECONF = "--disable-gtk-doc"
39EXTRA_OEMAKE = "IDL_COMPILER='${STAGING_BINDIR_NATIVE}/orbit-idl-2'"
40EXTRA_OEMAKE_virtclass-native = " "
41
42do_configure_prepend() {
43 mkdir -p m4
44 install ${WORKDIR}/gtk-doc.m4 ./m4/
45 install ${WORKDIR}/gtk-doc.make ./
46}