]> git.pld-linux.org Git - packages/x11vnc.git/blame_incremental - x11vnc.spec
- release 2
[packages/x11vnc.git] / x11vnc.spec
... / ...
CommitLineData
1Summary: A VNC server for the current X11 session
2Summary(pl.UTF-8): Program serwujący aktualną sesję X11 poprzez VNC
3Name: x11vnc
4Version: 0.9.9
5Release: 2
6License: GPL
7Group: X11/Applications/Networking
8Source0: http://x11vnc.sourceforge.net/dev/%{name}-%{version}.tar.gz
9# Source0-md5: 874008821a0588a73ec7fbe09b747bb0
10Source1: %{name}-x11vncd
11Source2: %{name}-x11vncd.init
12Source3: %{name}-x11vncd.sysconfig
13Source4: %{name}-x11vncd_passwd
14URL: http://www.karlrunge.com/x11vnc/
15BuildRequires: autoconf >= 2.59-9
16BuildRequires: automake
17BuildRequires: libjpeg-devel
18BuildRequires: openssl-devel
19BuildRequires: xorg-lib-libX11-devel
20BuildRequires: xorg-lib-libXdamage-devel
21BuildRequires: xorg-lib-libXext-devel
22BuildRequires: xorg-lib-libXfixes-devel
23BuildRequires: xorg-lib-libXinerama-devel
24BuildRequires: xorg-lib-libXrandr-devel
25BuildRequires: xorg-lib-libXtst-devel
26BuildRequires: zlib-devel
27BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
28
29%description
30x11vnc is to X Window System what WinVNC is to Windows, i.e. a server
31which serves the current X Window System desktop via RFB (VNC)
32protocol to the user.
33
34Based on the ideas of x0rfbserver and on LibVNCServer, it has evolved
35into a versatile and performant while still easy to use program.
36
37%description -l pl.UTF-8
38x11vnc jest dla X Window System tym, czym jest WinVNC dla Windows,
39czyli programem udostępniającym aktualny ekran X Window System poprzez
40protokół RFB (VNC) dla użytkownika.
41
42Bazuje na pomyśle x0rfbserver i LibVNCServer, został stworzony jako
43wszechstronny i wydajny, ale także łatwy w użyciu.
44
45%package init
46Summary: Init scripts for VNC server
47Summary(pl.UTF-8): Skrytpy startowe dla servera VNC.
48Group: X11/Applications/Networking
49Requires: x11vnc
50
51%description init
52Init scripts for VNC server.
53
54%description init -l pl.UTF-8
55Skrytpy 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
71rm -rf $RPM_BUILD_ROOT
72
73%{__make} install \
74 DESTDIR=$RPM_BUILD_ROOT
75
76install -d $RPM_BUILD_ROOT%{_sbindir} \
77 $RPM_BUILD_ROOT/etc/{rc.d/init.d,sysconfig}
78
79cp %{SOURCE1} $RPM_BUILD_ROOT%{_sbindir}/x11vncd
80cp %{SOURCE2} $RPM_BUILD_ROOT/etc/rc.d/init.d/x11vncd
81cp %{SOURCE3} $RPM_BUILD_ROOT/etc/sysconfig/x11vncd
82cp %{SOURCE4} $RPM_BUILD_ROOT/etc/x11vncd_passwd
83
84%clean
85rm -rf $RPM_BUILD_ROOT
86
87%post init
88/sbin/chkconfig --add x11vncd
89%service x11vncd restart "VNC Server"
90
91%preun init
92if [ "$1" = "0" ]; then
93 %service x11vncd stop
94 /sbin/chkconfig --del x11vncd
95fi
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.062888 seconds and 4 git commands to generate.