aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MAINTAINERS4
-rw-r--r--packages/vnc/libvncserver/.mtn2git_empty0
-rw-r--r--packages/vnc/libvncserver/configure_ac.patch15
-rw-r--r--packages/vnc/libvncserver_0.9.1.bb25
4 files changed, 44 insertions, 0 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index 9e5f8f4387..69594e61ba 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -157,6 +157,10 @@ Machines: fic-gta01, fic-gta02, nokia810, x86, qemuarm, qemux86
Interests: Core OE infrastructure, everything Python, EFL, E17, Qt4
Recipes: *python*, efl/*, e17*
+Person: Patrick Gfeller
+Mail: gfellerpatrik@gmx.net
+Recipes: libvncserver, fbvncserver
+
Person: Paul Sokolovsky
Mail: pmiscml@gmail.com
Machines: h3900, h4000, hx4700
diff --git a/packages/vnc/libvncserver/.mtn2git_empty b/packages/vnc/libvncserver/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/vnc/libvncserver/.mtn2git_empty
diff --git a/packages/vnc/libvncserver/configure_ac.patch b/packages/vnc/libvncserver/configure_ac.patch
new file mode 100644
index 0000000000..07c067ce7f
--- /dev/null
+++ b/packages/vnc/libvncserver/configure_ac.patch
@@ -0,0 +1,15 @@
+--- LibVNCServer-0.9.1-org/configure.ac 2007-06-02 21:36:29.000000000 +0200
++++ LibVNCServer-0.9.1-org-org/configure.ac 2007-05-27 17:14:22.000000000 +0200
+@@ -676,9 +676,9 @@
+ libvncserver-config
+ LibVNCServer.spec])
+ # x11vnc only:
+-if test "$build_x11vnc" = "yes"; then
+- AC_CONFIG_FILES([x11vnc/Makefile x11vnc/misc/Makefile])
+-fi
++# if test "$build_x11vnc" = "yes"; then
++# AC_CONFIG_FILES([x11vnc/Makefile x11vnc/misc/Makefile])
++# fi
+
+ AC_CONFIG_COMMANDS([chmod-libvncserver-config],[chmod a+x libvncserver-config])
+ AC_OUTPUT
diff --git a/packages/vnc/libvncserver_0.9.1.bb b/packages/vnc/libvncserver_0.9.1.bb
new file mode 100644
index 0000000000..c079fdeb15
--- /dev/null
+++ b/packages/vnc/libvncserver_0.9.1.bb
@@ -0,0 +1,25 @@
+DESCRIPTION = "library for easy implementation of a RDP/VNC server"
+AUTHOR = "Johannes Schindelin <dscho@users.sourceforge.net"
+HOMEPAGE = "http://sourceforge.net/projects/libvncserver/"
+SECTION = "libs"
+PRIORITY = "optional"
+LICENSE = "GPLv2"
+DEPENDS = "zlib jpeg"
+PR = "r0"
+
+DEFAULT_PREFERENCE = "-1"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/libvncserver/LibVNCServer-${PV}.tar.gz \
+ file://configure_ac.patch"
+S = "${WORKDIR}/LibVNCServer-${PV}"
+
+# => create libvncserver only
+EXTRA_OEMAKE_append=" SUBDIRS='libvncserver' "
+
+inherit autotools
+do_stage() {
+ autotools_stage_all
+}
+
+
+