forked from drinkmilk/directvnc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirectvnc.spec
70 lines (53 loc) · 1.88 KB
/
directvnc.spec
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
%define name directvnc
%define version 0.7.7
%define release 1
Summary: VNC client for the GNU/Linux framebuffer device using the DirectFB library.
Name: %{name}
Version: %{version}
Release: %{release}
Source: http://cloud.github.com/downloads/drinkmilk/directvnc/%{name}-%{version}.tar.gz
Url: http://drinkmilk.github.com/directvnc
License: GPL
Group: Networking/Remote Access
BuildRoot: %{_tmppath}/%{name}-buildroot
Prefix: %{_prefix}
Requires: libdirectfb >= 0.9.24
%description
DirectVNC is a client implementing the remote framebuffer protocol (rfb)
which is used by VNC servers. If a VNC server is running on a machine you
can connect to it using this client and have the contents of its display
shown on your screen. Keyboard and mouse events are sent to the server, so
you can basically control a VNC server remotely. There are servers (and
other clients) freely available for all operating systems. To find out more
about VNC check out its home on the web at AT&T labs.
www.uk.research.att.com/vnc/
What makes DirectVNC different from other unix vnc clients is that it uses
the linux framebuffer device through the DirectFB library which enables it
to run on anything that has a framebuffer without the need for a running X
server. This includes embedded devices. DirectFB even uses acceleration
features of certain graphics cards. Find out all about DirectFB here:
www.directfb.org
DirectVNC basically provides a very thin VNC client for unix framebuffer
systems.
%prep
rm -rf $RPM_BUILD_ROOT
%setup
%build
%configure
make
%install
%makeinstall
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,755)
%doc AUTHORS changelog README
%{_mandir}/man1/directvnc.1*
%{_mandir}/man1/directvnc-xmapconv.1*
%{_mandir}/man1/directvnc-kbmapping.7*
%{_bindir}/directvnc
%{_bindir}/directvnc-xmapconv
%changelog
* Sat Dec 08 2001 Till Adam <[email protected]>
- initial spec file
# end of file