diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
commit | 06f7d17e81de21a95e35b03453242bc62b05a6aa (patch) | |
tree | bc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /libvncserver/libvncserver_0.6.oe | |
parent | 4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff) |
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'libvncserver/libvncserver_0.6.oe')
-rw-r--r-- | libvncserver/libvncserver_0.6.oe | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/libvncserver/libvncserver_0.6.oe b/libvncserver/libvncserver_0.6.oe index e69de29bb2..6f178083b4 100644 --- a/libvncserver/libvncserver_0.6.oe +++ b/libvncserver/libvncserver_0.6.oe @@ -0,0 +1,34 @@ +DESCRIPTION = "library for easy implementation of a RDP/VNC server" +SECTION = "libs" +PRIORITY = "optional" +DEPENDS = "virtual/libc zlib jpeg" +RDEPENDSlibc6 =zlib libjpeg +LICENSE = "GPL" +PACKAGES = 'libvncserver-storepasswd libvncserver-javaapplet' +FILES_libvncserver-storepasswd=${bindir}/storepasswd +FILES_libvncserver-javaapplet='/usr/share/fbvncserver/classes/index.vnc \ + /usr/share/fbvncserver/classes/VncViewer.jar' + +SRC_URI=${SOURCEFORGE_MIRROR}/libvncserver/LibVNCServer-${PV}.tar.gz + +CFLAGS_append = " -D_REENTRANT" +S = "${WORKDIR}/LibVNCServer-${PV}" + +inherit autotools + +do_stage () { + install -d ${STAGING_INCDIR}/rfb + install -m 0644 rfb/rfb.h rfb/rfbproto.h rfb/rfbint.h rfb/rfbconfig.h \ + rfb/rfbclient.h rfb/rfbregion.h rfb/keysym.h \ + rfb/default8x16.h ${STAGING_INCDIR}/rfb + + install -m 0644 libvncserver.a libvncclient/libvncclient.a ${STAGING_LIBDIR} +} + +do_install () { + install -d ${D}/${bindir} + install -m 0755 examples/storepasswd ${D}/${bindir} + install -d ${D}/usr/share/fbvncserver/classes + install -m 0644 classes/index.vnc ${D}/usr/share/fbvncserver/classes/ + install -m 0644 classes/VncViewer.jar ${D}/usr/share/fbvncserver/classes/ +} |