diff options
author | Koen Kooi <koen@openembedded.org> | 2005-04-27 10:58:57 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2005-04-27 10:58:57 +0000 |
commit | 4605647a0dbe3261994993f8a5098e10babc75d2 (patch) | |
tree | 6d9c4438891765676d6c0b8749db0cec9eee55dc | |
parent | fe2c633e5cb5ca2e58ca8e1a0d87642cc5033e93 (diff) |
add x11 to depends
BKrev: 426f70719ysbjuapFEFj3I5vj3cUGg
-rw-r--r-- | packages/libvncserver/libvncserver_0.7.1.bb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/packages/libvncserver/libvncserver_0.7.1.bb b/packages/libvncserver/libvncserver_0.7.1.bb index 1ae86ea69b..6129fff455 100644 --- a/packages/libvncserver/libvncserver_0.7.1.bb +++ b/packages/libvncserver/libvncserver_0.7.1.bb @@ -1,19 +1,20 @@ DESCRIPTION = "library for easy implementation of a RDP/VNC server" SECTION = "libs" PRIORITY = "optional" -DEPENDS = "zlib jpeg" +DEPENDS = "zlib jpeg x11" LICENSE = "GPL" -PACKAGES = "libvncserver-storepasswd libvncserver-javaapplet" +PACKAGES = "x11vnc libvncserver-storepasswd libvncserver-javaapplet" FILES_libvncserver-storepasswd = "${bindir}/storepasswd" FILES_libvncserver-javaapplet = "/${datadir}fbvncserver/classes/index.vnc \ /${datadir}fbvncserver/classes/VncViewer.jar" +FILES_x11vnc = "${bindir}/x11vnc" SRC_URI = "${SOURCEFORGE_MIRROR}/libvncserver/LibVNCServer-${PV}.tar.gz" CFLAGS_append = " -D_REENTRANT" S = "${WORKDIR}/LibVNCServer-${PV}" -# Original SUBDIRS is='libvncserver examples contrib x11vnc vncterm classes libvncclient client_examples test' -EXTRA_OEMAKE_append=" SUBDIRS='libvncserver examples classes'" +# Original SUBDIRS is='libvncserver examples contrib vncterm classes libvncclient client_examples test' +EXTRA_OEMAKE_append=" SUBDIRS='libvncserver x11vnc examples classes'" inherit autotools @@ -29,6 +30,7 @@ do_stage () { do_install () { install -d ${D}${bindir} install -m 0755 examples/storepasswd ${D}${bindir} + install -m 0755 x11vnc/x11vnc ${D}${bindir} install -d ${D}${datadir}fbvncserver/classes install -m 0644 classes/index.vnc ${D}${datadir}fbvncserver/classes/ install -m 0644 classes/VncViewer.jar ${D}${datadir}fbvncserver/classes/ |