libxcomp: inital release
authorHenning Heinold <heinold@inf.fu-berlin.de>
Fri, 5 Sep 2008 21:34:52 +0000 (21:34 +0000)
committerHenning Heinold <heinold@inf.fu-berlin.de>
Fri, 5 Sep 2008 21:34:52 +0000 (21:34 +0000)
* sa_restorer is taken from latest debian unstable package
* first step for nx-client support in openembedded

packages/libxcomp/.mtn2git_empty [new file with mode: 0644]
packages/libxcomp/files/.mtn2git_empty [new file with mode: 0644]
packages/libxcomp/files/sa_restorer.patch [new file with mode: 0644]
packages/libxcomp/libxcomp_3.2.0-7.bb [new file with mode: 0644]

diff --git a/packages/libxcomp/.mtn2git_empty b/packages/libxcomp/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/libxcomp/files/.mtn2git_empty b/packages/libxcomp/files/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/libxcomp/files/sa_restorer.patch b/packages/libxcomp/files/sa_restorer.patch
new file mode 100644 (file)
index 0000000..570b302
--- /dev/null
@@ -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 (file)
index 0000000..84ab8d2
--- /dev/null
@@ -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}/ 
+}