diff options
author | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2008-01-28 02:15:16 +0000 |
---|---|---|
committer | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2008-01-28 02:15:16 +0000 |
commit | 51f60345dd97eead636879516201100d586969b0 (patch) | |
tree | b84ebda169f7566b2b8b7defa65de09d32a62962 /packages/vnc | |
parent | ded00f268307c513cc2166b8437e49d2895b32b5 (diff) |
libvncserver: add recipe for version 0.9.1 as proposed in 2411
* this has disabled x11vnc and the SDL viewer. DEFAULT_PREF is -1
* add Patrick to MAINTAINERS file as requested in 2125
Diffstat (limited to 'packages/vnc')
-rw-r--r-- | packages/vnc/libvncserver/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/vnc/libvncserver/configure_ac.patch | 15 | ||||
-rw-r--r-- | packages/vnc/libvncserver_0.9.1.bb | 25 |
3 files changed, 40 insertions, 0 deletions
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 +} + + + |