blob: 944710497f50c0fa343ada9f937cf60f888c8428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "X11 VNC server"
SECTION = "x11"
PRIORITY = "optional"
DEPENDS = "zlib jpeg virtual/libx11"
LICENSE = "GPL"
SRC_URI = "${SOURCEFORGE_MIRROR}/libvncserver/LibVNCServer-${PV}.tar.gz"
CFLAGS_append = " -D_REENTRANT"
S = "${WORKDIR}/LibVNCServer-${PV}"
# Original SUBDIRS is='libvncserver examples contrib vncterm classes libvncclient client_examples test'
EXTRA_OEMAKE_append=" SUBDIRS='libvncserver x11vnc'"
inherit autotools
do_install () {
install -d ${D}${bindir}
install -m 0755 x11vnc/x11vnc ${D}${bindir}
}
|