summaryrefslogtreecommitdiff
path: root/recipes/omniorb/omniorb-native_4.1.4.bb
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/omniorb/omniorb-native_4.1.4.bb')
-rw-r--r--recipes/omniorb/omniorb-native_4.1.4.bb23
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes/omniorb/omniorb-native_4.1.4.bb b/recipes/omniorb/omniorb-native_4.1.4.bb
new file mode 100644
index 0000000000..c06a74a676
--- /dev/null
+++ b/recipes/omniorb/omniorb-native_4.1.4.bb
@@ -0,0 +1,23 @@
+SECTION = "devel"
+DEPENDS += "python-native"
+PR = "r0"
+
+SRC_URI = "http://downloads.sourceforge.net/omniorb/omniORB-4.1.4.tar.gz;name=omniORB414targz \
+ file://omniorb_4.1.4.patch;patch=1 \
+"
+
+SRC_URI[omniORB414targz.md5sum] = "1f6070ff9b6339876976d61981eeaa6a"
+SRC_URI[omniORB414targz.sha256sum] = "84fb9790c25d6e46248c9773747e393b429573190da2150850d4a49debda4e8e"
+
+S = "${WORKDIR}/omniORB-${PV}"
+
+inherit native autotools
+
+do_compile () {
+ oe_runmake
+}
+# Ugly hack so libtool does not find native libs when building cross packages
+# We really only build this package for omniidl anyway
+do_stage_append() {
+ rm -f ${STAGING_LIBDIR_NATIVE}/libomni*
+}