]> git.pld-linux.org Git - packages/x11vnc.git/blob - x11vnc.spec
- dropped BR: xorg-lib-libXTrap-devel
[packages/x11vnc.git] / x11vnc.spec
1 Summary:        A VNC server for the current X11 session
2 Summary(pl.UTF-8):      Program serwujący aktualną sesję X11 poprzez VNC
3 Name:           x11vnc
4 Version:        0.9.9
5 Release:        1
6 License:        GPL
7 Group:          X11/Applications/Networking
8 Source0:        http://x11vnc.sourceforge.net/dev/%{name}-%{version}.tar.gz
9 # Source0-md5:  874008821a0588a73ec7fbe09b747bb0
10 Source1:        %{name}-x11vncd
11 Source2:        %{name}-x11vncd.init
12 Source3:        %{name}-x11vncd.sysconfig
13 Source4:        %{name}-x11vncd_passwd
14 URL:            http://www.karlrunge.com/x11vnc/
15 BuildRequires:  autoconf >= 2.59-9
16 BuildRequires:  automake
17 BuildRequires:  libjpeg-devel
18 BuildRequires:  openssl-devel
19 BuildRequires:  xorg-lib-libX11-devel
20 BuildRequires:  xorg-lib-libXdamage-devel
21 BuildRequires:  xorg-lib-libXext-devel
22 BuildRequires:  xorg-lib-libXfixes-devel
23 BuildRequires:  xorg-lib-libXinerama-devel
24 BuildRequires:  xorg-lib-libXrandr-devel
25 BuildRequires:  xorg-lib-libXtst-devel
26 BuildRequires:  zlib-devel
27 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
28
29 %description
30 x11vnc is to X Window System what WinVNC is to Windows, i.e. a server
31 which serves the current X Window System desktop via RFB (VNC)
32 protocol to the user.
33
34 Based on the ideas of x0rfbserver and on LibVNCServer, it has evolved
35 into a versatile and performant while still easy to use program.
36
37 %description -l pl.UTF-8
38 x11vnc jest dla X Window System tym, czym jest WinVNC dla Windows,
39 czyli programem udostępniającym aktualny ekran X Window System poprzez
40 protokół RFB (VNC) dla użytkownika.
41
42 Bazuje na pomyśle x0rfbserver i LibVNCServer, został stworzony jako
43 wszechstronny i wydajny, ale także łatwy w użyciu.
44
45 %package init
46 Summary:        Init scripts for VNC server
47 Summary(pl.UTF-8):      Skrytpy startowe dla servera VNC.
48 Group:          X11/Applications/Networking
49 Requires:       x11vnc
50
51 %description init
52 Init scripts for VNC server.
53
54 %description init -l pl.UTF-8
55 Skrytpy startowe dla servera VNC.
56
57 %prep
58 %setup -q
59
60 %build
61 %{__aclocal}
62 %{__autoconf}
63 %{__autoheader}
64 %{__automake}
65 %configure \
66         --with-x
67
68 %{__make}
69
70 %install
71 rm -rf $RPM_BUILD_ROOT
72
73 %{__make} install \
74         DESTDIR=$RPM_BUILD_ROOT
75
76 install -d $RPM_BUILD_ROOT%{_sbindir} \
77         $RPM_BUILD_ROOT/etc/{rc.d/init.d,sysconfig}
78
79 cp %{SOURCE1} $RPM_BUILD_ROOT%{_sbindir}/x11vncd
80 cp %{SOURCE2} $RPM_BUILD_ROOT/etc/rc.d/init.d/x11vncd
81 cp %{SOURCE3} $RPM_BUILD_ROOT/etc/sysconfig/x11vncd
82 cp %{SOURCE4} $RPM_BUILD_ROOT/etc/x11vncd_passwd
83
84 %clean
85 rm -rf $RPM_BUILD_ROOT
86
87 %post init
88 /sbin/chkconfig --add x11vncd
89 %service x11vncd restart "VNC Server"
90
91 %preun init
92 if [ "$1" = "0" ]; then
93         %service x11vncd stop
94         /sbin/chkconfig --del x11vncd
95 fi
96
97 %files
98 %defattr(644,root,root,755)
99 %doc README NEWS TODO ChangeLog AUTHORS
100 %attr(755,root,root) %{_bindir}/*
101 %{_datadir}/%{name}
102 %{_desktopdir}/%{name}.desktop
103 %{_mandir}/man1/%{name}.1*
104
105 %files init
106 %defattr(644,root,root,755)
107 %attr(755,root,root) %{_sbindir}/x11vncd
108 %attr(754,root,root) /etc/rc.d/init.d/x11vncd
109 %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/x11vncd
110 %attr(600,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/x11vncd_passwd
This page took 0.037403 seconds and 3 git commands to generate.