aboutsummaryrefslogtreecommitdiffstats
path: root/packages/libvncserver/libvncserver_0.7.1.bb
blob: 80a70e5f578a51322d2e240472bd9db6c3b23178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
DESCRIPTION = "library for easy implementation of a RDP/VNC server"
SECTION = "libs"
PRIORITY = "optional"
DEPENDS = "zlib jpeg"
LICENSE = "GPL"
PACKAGES = "libvncserver-storepasswd libvncserver-javaapplet"
FILES_libvncserver-storepasswd = "${bindir}/storepasswd"
FILES_libvncserver-javaapplet = "${datadir}/fbvncserver/classes/index.vnc \
			         ${datadir}/fbvncserver/classes/VncViewer.jar"

PR = "r1"

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'"

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

	oe_libinstall -a -C libvncserver libvncserver ${STAGING_LIBDIR}/
}

do_install () {
	install -d ${D}${bindir}
	install -m 0755 examples/storepasswd ${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/
}