1SUMMARY="VNC Viewer for BeOS and Haiku"
2DESCRIPTION="Connect to remote machines and view their desktop. Interact with \
3them using your keyboard and mouse.
4
5The VNC protocol is cross-platform with client and servers available on many \
6operating systems. Several encoding schemes are supported to limit network \
7bandwidth needs, making VNC useable even over a relatively slow network \
8connection."
9HOMEPAGE="https://github.com/HaikuArchives/VNCViewer"
10COPYRIGHT="1998 Abstrakt Design, Andreas F. Bobak."
11LICENSE="GNU GPL v2"
12REVISION="1"
13SOURCE_URI="https://github.com/HaikuArchives/VNCViewer/archive/$portVersion.tar.gz"
14CHECKSUM_SHA256="e131737811f34903ea928cccc4e75bb9942f3fd484c38ebdf9db0f866ced4e67"
15SOURCE_DIR="VNCViewer-$portVersion"
16
17ARCHITECTURES="x86_gcc2"
18
19PROVIDES="
20	vncviewer = $portVersion
21	app:vncviewer
22"
23
24BUILD_REQUIRES="
25	devel:libz
26"
27BUILD_PREREQUIRES="
28	haiku_devel
29	makefile_engine
30	cmd:gcc
31	cmd:make
32"
33
34BUILD()
35{
36	cd source
37	make $jobArgs
38}
39
40INSTALL()
41{
42	cd source
43	make install INSTALL_DIR=$appsDir
44
45	addAppDeskbarSymlink $appsDir/VNCViewer "VNC Viewer"
46}
47