[oe-commits] : libxcomp: inital release

OE GIT Trial gittrial at amethyst.openembedded.net
Fri Sep 5 21:41:50 UTC 2008


Module: OE.dev
Branch: master
Commit: d2e90f61beaa3e82a56555d256e0eeaf365663e2
URL:    http://gitweb.openembedded.net//OE.dev.git/?a=commit;h=d2e90f61beaa3e82a56555d256e0eeaf365663e2

Author:  <woglinde2 at openembedded.org>
Date:   Fri Sep  5 21:34:52 2008 +0000

libxcomp: inital release
* sa_restorer is taken from latest debian unstable package
* first step for nx-client support in openembedded

---

 packages/libxcomp/files/sa_restorer.patch |   25 +++++++++++++++++++++++++
 packages/libxcomp/libxcomp_3.2.0-7.bb     |   28 ++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+), 0 deletions(-)

diff --git a/packages/libxcomp/.mtn2git_empty b/packages/libxcomp/.mtn2git_empty
new file mode 100644
index 0000000..e69de29
diff --git a/packages/libxcomp/files/.mtn2git_empty b/packages/libxcomp/files/.mtn2git_empty
new file mode 100644
index 0000000..e69de29
diff --git a/packages/libxcomp/files/sa_restorer.patch b/packages/libxcomp/files/sa_restorer.patch
new file mode 100644
index 0000000..570b302
--- /dev/null
+++ b/packages/libxcomp/files/sa_restorer.patch
@@ -0,0 +1,25 @@
+Patch taken from the debian unstable package
+
+
+Index: nxcomp/Loop.cpp
+===================================================================
+--- nxcomp/Loop.cpp	2008-06-16 18:49:56.330011773 +0100
++++ nxcomp/Loop.cpp	2008-06-16 18:50:18.093320515 +0100
+@@ -5888,7 +5888,7 @@
+ 
+   #if defined(__linux__)
+ 
+-  newAction.sa_restorer = NULL;
++  memset(&newAction, NULL, sizeof(newAction));
+ 
+   #endif
+ 
+@@ -6506,7 +6506,7 @@
+ 
+   #if defined(__linux__)
+ 
+-  action.sa_restorer = NULL;
++  memset(&action, NULL, sizeof(action));
+ 
+   #endif
+ 
diff --git a/packages/libxcomp/libxcomp_3.2.0-7.bb b/packages/libxcomp/libxcomp_3.2.0-7.bb
new file mode 100644
index 0000000..84ab8d2
--- /dev/null
+++ b/packages/libxcomp/libxcomp_3.2.0-7.bb
@@ -0,0 +1,28 @@
+DESCRIPTION = "Compression library for x-protocol from nomachine"
+HOMEPAGE = "http://www.nomachine.com/"
+SECTION = "libs"
+LICENSE = "GPL"
+PR = "r0"
+
+DEPENDS = "virtual/libx11 zlib jpeg libpng"
+
+SRC_URI = "http://64.34.161.181/download/3.2.0/sources/nxcomp-${PV}.tar.gz \
+	   file://sa_restorer.patch;patch=1 \
+	  "
+
+          
+inherit autotools
+
+S = "${WORKDIR}/nxcomp"
+
+do_install () {
+       oe_libinstall -a -so libXcomp ${D}${libdir}
+       install -d ${D}${includedir}/
+       install -m 0644 NX.h ${D}${includedir}/
+}
+
+
+do_stage () {
+       oe_libinstall -a -so libXcomp ${STAGING_LIBDIR}
+       install -m 0644 NX.h ${STAGING_INCDIR}/ 
+}





More information about the Openembedded-commits mailing list