blob: 735cfaed082e027f5044654d15dc7dba7848f994 (
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 x11"
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}
}
|