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