You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tigervnc.spec 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  1. Name: tigervnc
  2. Version: @VERSION@
  3. Release: 1%{?snap:.%{snap}}%{?dist}
  4. Summary: A TigerVNC remote display system
  5. Group: User Interface/Desktops
  6. License: GPLv2+
  7. Packager: Brian P. Hinz <bphinz@users.sourceforge.net>
  8. URL: http://www.tigervnc.com
  9. Source0: %{name}-%{version}%{?snap:-%{snap}}.tar.bz2
  10. Source3: 10-libvnc.conf
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
  12. BuildRequires: libX11-devel, automake, autoconf, libtool, gettext, gettext-autopoint
  13. BuildRequires: libXext-devel, xorg-x11-server-source, libXi-devel
  14. BuildRequires: xorg-x11-xtrans-devel, xorg-x11-util-macros, libXtst-devel
  15. BuildRequires: libdrm-devel, libXt-devel, pixman-devel
  16. BuildRequires: libxkbfile-devel, openssl-devel, libpciaccess-devel
  17. BuildRequires: mesa-libGL-devel, libXinerama-devel, ImageMagick
  18. BuildRequires: freetype-devel, libXdmcp-devel, libXfont2-devel
  19. BuildRequires: libXrandr-devel, fltk-devel >= 1.3.3
  20. BuildRequires: libjpeg-turbo-devel, gnutls-devel, pam-devel
  21. BuildRequires: systemd, cmake, selinux-policy-devel
  22. BuildRequires: libpng-devel
  23. BuildRequires: zlib-devel
  24. BuildRequires: gcc-c++, libxshmfence-devel
  25. Requires(post): coreutils
  26. Requires(postun): coreutils
  27. Requires: hicolor-icon-theme
  28. Requires: tigervnc-license = %{version}-%{release}
  29. Requires: tigervnc-icons = %{version}-%{release}
  30. Provides: vnc = 4.1.3-2, vnc-libs = 4.1.3-2
  31. Obsoletes: vnc < 4.1.3-2, vnc-libs < 4.1.3-2
  32. Provides: tightvnc = 1.5.0-0.15.20090204svn3586
  33. Obsoletes: tightvnc < 1.5.0-0.15.20090204svn3586
  34. %description
  35. Virtual Network Computing (VNC) is a remote display system which
  36. allows you to view a computing 'desktop' environment not only on the
  37. machine where it is running, but from anywhere on the Internet and
  38. from a wide variety of machine architectures. This package contains a
  39. client which will allow you to connect to other desktops running a VNC
  40. server.
  41. %package server
  42. Summary: A TigerVNC server
  43. Group: User Interface/X
  44. Provides: vnc-server = 4.1.3-2, vnc-libs = 4.1.3-2
  45. Obsoletes: vnc-server < 4.1.3-2, vnc-libs < 4.1.3-2
  46. Provides: tightvnc-server = 1.5.0-0.15.20090204svn3586
  47. Obsoletes: tightvnc-server < 1.5.0-0.15.20090204svn3586
  48. Requires: perl-interpreter
  49. Requires: tigervnc-server-minimal = %{version}-%{release}
  50. Requires: tigervnc-selinux = %{version}-%{release}
  51. Requires: xorg-x11-xauth
  52. Requires: xorg-x11-xinit
  53. Requires(post): systemd
  54. Requires(preun): systemd
  55. Requires(postun): systemd
  56. Requires(post): systemd-sysv chkconfig
  57. %description server
  58. The VNC system allows you to access the same desktop from a wide
  59. variety of platforms. This package includes set of utilities
  60. which make usage of TigerVNC server more user friendly. It also
  61. contains x0vncserver program which can export your active
  62. X session.
  63. %package server-minimal
  64. Summary: A minimal installation of TigerVNC server
  65. Group: User Interface/X
  66. Requires(post): chkconfig
  67. Requires(preun): chkconfig
  68. Requires(preun): initscripts
  69. Requires(postun): initscripts
  70. Requires: mesa-dri-drivers, xkeyboard-config, xorg-x11-xkb-utils
  71. Requires: tigervnc-license = %{version}-%{release}
  72. %description server-minimal
  73. The VNC system allows you to access the same desktop from a wide
  74. variety of platforms. This package contains minimal installation
  75. of TigerVNC server, allowing others to access the desktop on your
  76. machine.
  77. %ifnarch s390 s390x
  78. %package server-module
  79. Summary: TigerVNC module to Xorg
  80. Group: User Interface/X
  81. Provides: vnc-server = 4.1.3-2, vnc-libs = 4.1.3-2
  82. Obsoletes: vnc-server < 4.1.3-2, vnc-libs < 4.1.3-2
  83. Provides: tightvnc-server-module = 1.5.0-0.15.20090204svn3586
  84. Obsoletes: tightvnc-server-module < 1.5.0-0.15.20090204svn3586
  85. Requires: xorg-x11-server-Xorg
  86. Requires: tigervnc-license = %{version}-%{release}
  87. %description server-module
  88. This package contains libvnc.so module to X server, allowing others
  89. to access the desktop on your machine.
  90. %endif
  91. %package license
  92. Summary: License of TigerVNC suite
  93. Group: User Interface/X
  94. BuildArch: noarch
  95. %description license
  96. This package contains license of the TigerVNC suite
  97. %package icons
  98. Summary: Icons for TigerVNC viewer
  99. Group: User Interface/X
  100. BuildArch: noarch
  101. %description icons
  102. This package contains icons for TigerVNC viewer
  103. %package selinux
  104. Summary: SELinux module for TigerVNC
  105. BuildArch: noarch
  106. Requires(pre): libselinux-utils
  107. Requires(post): selinux-policy-base >= %{_selinux_policy_version}
  108. Requires(post): policycoreutils policycoreutils-python
  109. Requires(post): libselinux-utils
  110. %description selinux
  111. This package provides the SELinux policy module to ensure TigerVNC
  112. runs properly under an environment with SELinux enabled.
  113. %prep
  114. rm -rf $RPM_BUILD_ROOT
  115. %setup -q -n %{name}-%{version}%{?snap:-%{snap}}
  116. cp -r /usr/share/xorg-x11-server-source/* unix/xserver
  117. pushd unix/xserver
  118. for all in `find . -type f -perm -001`; do
  119. chmod -x "$all"
  120. done
  121. xserver_patch="../xserver$(rpm -q --qf '%%{VERSION}' xorg-x11-server-source | awk -F. '{ print $1 $2 }').patch"
  122. patch -p1 -b --suffix .vnc < "$xserver_patch"
  123. popd
  124. %build
  125. %ifarch sparcv9 sparc64 s390 s390x
  126. export CFLAGS="$RPM_OPT_FLAGS -fPIC"
  127. %else
  128. export CFLAGS="$RPM_OPT_FLAGS -fpic"
  129. %endif
  130. export CXXFLAGS="$CFLAGS"
  131. export CPPFLAGS="$CXXFLAGS"
  132. export CMAKE_EXE_LINKER_FLAGS=$LDFLAGS
  133. # The cmake in RHEL is too old and doesn't set up
  134. # CMAKE_INSTALL_SYSCONFDIR properly
  135. %{cmake} -G"Unix Makefiles" \
  136. -DCMAKE_INSTALL_SYSCONFDIR:PATH=%{_sysconfdir} \
  137. -DBUILD_STATIC=off
  138. make %{?_smp_mflags}
  139. pushd unix/xserver
  140. autoreconf -fiv
  141. %configure \
  142. --disable-xorg --disable-xnest --disable-xvfb --disable-dmx \
  143. --disable-xwin --disable-xephyr --disable-kdrive --with-pic \
  144. --disable-static --disable-xwayland \
  145. --with-default-font-path="catalogue:%{_sysconfdir}/X11/fontpath.d,built-ins" \
  146. --with-fontdir=%{_datadir}/X11/fonts \
  147. --with-xkb-output=%{_localstatedir}/lib/xkb \
  148. --enable-install-libxf86config \
  149. --enable-glx --disable-dri --enable-dri2 --disable-dri3 \
  150. --disable-wayland \
  151. --disable-present \
  152. --disable-config-dbus \
  153. --disable-config-hal \
  154. --disable-config-udev \
  155. --with-dri-driver-path=%{_libdir}/dri \
  156. --without-dtrace \
  157. --disable-unit-tests \
  158. --disable-devel-docs \
  159. --disable-selective-werror
  160. make %{?_smp_mflags}
  161. popd
  162. # Build icons
  163. pushd media
  164. make
  165. popd
  166. # SELinux
  167. pushd unix/vncserver/selinux
  168. make
  169. popd
  170. %install
  171. make install DESTDIR=$RPM_BUILD_ROOT
  172. pushd unix/xserver/hw/vnc
  173. make install DESTDIR=$RPM_BUILD_ROOT
  174. popd
  175. pushd unix/vncserver/selinux
  176. make install DESTDIR=$RPM_BUILD_ROOT
  177. popd
  178. %find_lang %{name} %{name}.lang
  179. # remove unwanted files
  180. rm -f $RPM_BUILD_ROOT%{_libdir}/xorg/modules/extensions/libvnc.la
  181. %ifarch s390 s390x
  182. rm -f $RPM_BUILD_ROOT%{_libdir}/xorg/modules/extensions/libvnc.so
  183. %else
  184. mkdir -p %{buildroot}%{_sysconfdir}/X11/xorg.conf.d/
  185. install -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/X11/xorg.conf.d/10-libvnc.conf
  186. %endif
  187. %clean
  188. rm -rf $RPM_BUILD_ROOT
  189. %post
  190. touch -c %{_datadir}/icons/hicolor
  191. if [ -x %{_bindir}/gtk-update-icon-cache ]; then
  192. %{_bindir}/gtk-update-icon-cache -q %{_datadir}/icons/hicolor || :
  193. fi
  194. %postun
  195. touch -c %{_datadir}/icons/hicolor
  196. if [ -x %{_bindir}/gtk-update-icon-cache ]; then
  197. %{_bindir}/gtk-update-icon-cache -q %{_datadir}/icons/hicolor || :
  198. fi
  199. %pre selinux
  200. %selinux_relabel_pre
  201. %post selinux
  202. %selinux_modules_install %{_datadir}/selinux/packages/vncsession.pp
  203. %selinux_relabel_post
  204. %posttrans selinux
  205. %selinux_relabel_post
  206. %postun selinux
  207. %selinux_modules_uninstall vncsession
  208. if [ $1 -eq 0 ]; then
  209. %selinux_relabel_post
  210. fi
  211. %files -f %{name}.lang
  212. %defattr(-,root,root,-)
  213. %doc %{_docdir}/%{name}/README.rst
  214. %{_bindir}/vncviewer
  215. %{_datadir}/applications/*
  216. %{_mandir}/man1/vncviewer.1*
  217. %files server
  218. %defattr(-,root,root,-)
  219. %config(noreplace) %{_sysconfdir}/pam.d/tigervnc
  220. %config(noreplace) %{_sysconfdir}/tigervnc/vncserver-config-defaults
  221. %config(noreplace) %{_sysconfdir}/tigervnc/vncserver-config-mandatory
  222. %config(noreplace) %{_sysconfdir}/tigervnc/vncserver.users
  223. %{_unitdir}/vncserver@.service
  224. %{_bindir}/x0vncserver
  225. %{_sbindir}/vncsession
  226. %{_libexecdir}/vncserver
  227. %{_libexecdir}/vncsession-start
  228. %{_mandir}/man1/x0vncserver.1*
  229. %{_mandir}/man8/vncserver.8*
  230. %{_mandir}/man8/vncsession.8*
  231. %files server-minimal
  232. %defattr(-,root,root,-)
  233. %{_bindir}/vncconfig
  234. %{_bindir}/vncpasswd
  235. %{_bindir}/Xvnc
  236. %{_mandir}/man1/Xvnc.1*
  237. %{_mandir}/man1/vncpasswd.1*
  238. %{_mandir}/man1/vncconfig.1*
  239. %ifnarch s390 s390x
  240. %files server-module
  241. %defattr(-,root,root,-)
  242. %{_libdir}/xorg/modules/extensions/libvnc.so
  243. %config %{_sysconfdir}/X11/xorg.conf.d/10-libvnc.conf
  244. %endif
  245. %files license
  246. %doc %{_docdir}/%{name}/LICENCE.TXT
  247. %files icons
  248. %defattr(-,root,root,-)
  249. %{_datadir}/icons/hicolor/*/apps/*
  250. %files selinux
  251. %{_datadir}/selinux/packages/vncsession.pp
  252. %changelog
  253. * Mon Jul 27 2020 Mark Mielke <mmielke@ciena.com> 1.10.1-1
  254. - Update build requirements and fix unexpected rpm macro expansion.
  255. * Tue Oct 22 2019 Evan Burns <evanburnsdev@gmail.com> 1.9.80-5
  256. - Add support for CentOS 8
  257. * Mon Feb 11 2019 Mark Mielke <mmielke@ciena.com> 1.9.80-5
  258. - Automatically detect and apply the correct X.org patch.
  259. * Mon Jan 14 2019 Pierre Ossman <ossman@cendio.se> 1.9.80-4
  260. - Use system FLTK for build
  261. - Add libXrandr-devel as a dependency so x0vncserver gets resize support.
  262. * Sun Dec 09 2018 Mark Mielke <mmielke@ciena.com> 1.9.80-3
  263. - Update package dependencies to require version alignment between packages.
  264. * Mon Nov 26 2018 Brian P. Hinz <bphinz@users.sourceforge.net> 1.9.80-2
  265. - Bumped Xorg version to 1.20
  266. * Sun Jul 22 2018 Brian P. Hinz <bphinz@users.sourceforge.net> 1.9.80-1
  267. - Updated fltk to latest version
  268. * Thu Dec 24 2015 Brian P. Hinz <bphinz@users.sourceforge.net> 1.6.80-1
  269. - Adapted from RedHat EL7 Spec
  270. * Wed Sep 02 2015 Jan Grulich <jgrulich@redhat.com> - 1.3.1-3
  271. - Do not mention that display number is required in the file name
  272. Resolves: bz#1195266
  273. * Thu Jul 30 2015 Jan Grulich <jgrulich@redhat.com> - 1.3.1-2
  274. - Resolves: bz#1248422
  275. CVE-2014-8240 CVE-2014-8241 tigervnc: various flaws
  276. * Wed Apr 15 2015 Jan Grulich <jgrulich@redhat.com> - 1.3.1-1
  277. - Drop unecessary patches
  278. - Re-base to 1.3.1 (bug #1199453)
  279. - Re-build against re-based xserver (bug #1194898)
  280. - Check the return value from XShmAttach (bug #1072733)
  281. - Add missing part of xserver114.patch (bug #1140603)
  282. - Keep pointer in sync (bug #1100661)
  283. - Make input device class global (bug #1119640)
  284. - Add IPv6 support (bug #1162722)
  285. - Set initial mode as prefered (bug #1181287)
  286. - Do not mention that display number is required in the file name (bug #1195266)
  287. - Enable Xinerama extension (bug #1199437)
  288. - Specify full path for runuser command (bug #1208817)
  289. * Tue Sep 23 2014 Tim Waugh <twaugh@redhat.com> - 1.2.80-0.31.20130314svn5065
  290. - Rebuilt against xorg-x11-server to pick up ppc64le fix (bug #1140424).
  291. * Mon Mar 10 2014 Tim Waugh <twaugh@redhat.com> - 1.2.80-0.30.20130314svn5065
  292. - Fixed heap-based buffer overflow (CVE-2014-0011, bug #1050928).
  293. * Tue Feb 18 2014 Tim Waugh <twaugh@redhat.com> - 1.2.80-0.29.20130314svn5065
  294. - Previous patch was not applied.
  295. * Mon Feb 10 2014 Tim Waugh <twaugh@redhat.com> - 1.2.80-0.28.20130314svn5065
  296. - Clearer xstartup file (bug #923655).
  297. * Tue Jan 28 2014 Tim Waugh <twaugh@redhat.com> - 1.2.80-0.27.20130314svn5065
  298. - Use keyboard input code from tigervnc-1.3.0 (bug #1053536).
  299. * Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.2.80-0.26.20130314svn5065
  300. - Mass rebuild 2014-01-24
  301. * Fri Jan 10 2014 Tim Waugh <twaugh@redhat.com> - 1.2.80-0.25.20130314svn5065
  302. - Fixed viewer crash when cursor has not been set (bug #1051333).
  303. * Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.2.80-0.24.20130314svn5065
  304. - Mass rebuild 2013-12-27
  305. * Thu Dec 12 2013 Tim Waugh <twaugh@redhat.com> 1.2.80-0.23.20130314svn5065
  306. - Avoid invalid read when ZRLE connection closed (bug #1039926).
  307. * Tue Dec 10 2013 Tim Waugh <twaugh@redhat.com> 1.2.80-0.22.20130314svn5065
  308. - Fixed GLX initialisation (bug #1039126).
  309. * Tue Nov 19 2013 Tim Waugh <twaugh@redhat.com> 1.2.80-0.21.20130314svn5065
  310. - Better fix for PIDFile problem (bug #1031625).
  311. * Fri Nov 08 2013 Adam Jackson <ajax@redhat.com> 1.2.80-0.20.20130314svn5065
  312. - Rebuild against xserver 1.15RC1
  313. * Wed Jul 24 2013 Tim Waugh <twaugh@redhat.com> 1.2.80-0.18.20130314svn5065
  314. - Avoid PIDFile problems in systemd unit file (bug #983232).
  315. - Don't use shebang in vncserver script.
  316. * Wed Jul 3 2013 Tim Waugh <twaugh@redhat.com> 1.2.80-0.18.20130314svn5065
  317. - Removed systemd_requires macro in order to fix the build.
  318. * Wed Jul 3 2013 Tim Waugh <twaugh@redhat.com> 1.2.80-0.17.20130314svn5065
  319. - Synchronise manpages and --help output (bug #980870).
  320. * Mon Jun 17 2013 Adam Jackson <ajax@redhat.com> 1.2.80-0.16.20130314svn5065
  321. - tigervnc-setcursor-crash.patch: Attempt to paper over a crash in Xvnc when
  322. setting the cursor.
  323. * Sat Jun 08 2013 Dennis Gilmore <dennis@ausil.us> 1.2.80-0.15.20130314svn5065
  324. - bump to rebuild and pick up bugfix causing X to crash on ppc and arm
  325. * Thu May 23 2013 Tim Waugh <twaugh@redhat.com> 1.2.80-0.14.20130314svn5065
  326. - Use systemd rpm macros (bug #850340). Moved systemd requirements
  327. from main package to server sub-package.
  328. - Applied Debian patch to fix busy loop when run from inetd in nowait
  329. mode (bug #920373).
  330. - Added dependency on xorg-x11-xinit to server sub-package so that
  331. default window manager can be found (bug #896284, bug #923655).
  332. - Fixed bogus changelog date.
  333. * Thu Mar 14 2013 Adam Jackson <ajax@redhat.com> 1.2.80-0.13.20130314svn5065
  334. - Less RHEL customization
  335. * Thu Mar 14 2013 Adam Tkac <atkac redhat com> - 1.2.80-0.12.20130314svn5065
  336. - include /etc/X11/xorg.conf.d/10-libvnc.conf sample configuration (#712482)
  337. - vncserver now honors specified -geometry parameter (#755947)
  338. * Tue Mar 12 2013 Adam Tkac <atkac redhat com> - 1.2.80-0.11.20130307svn5060
  339. - update to r5060
  340. - split icons to separate package to avoid multilib issues
  341. * Tue Feb 19 2013 Adam Tkac <atkac redhat com> - 1.2.80-0.10.20130219svn5047
  342. - update to r5047 (X.Org 1.14 support)
  343. * Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.80-0.9.20121126svn5015
  344. - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
  345. * Mon Jan 21 2013 Adam Tkac <atkac redhat com> - 1.2.80-0.8.20121126svn5015
  346. - rebuild due to "jpeg8-ABI" feature drop
  347. * Wed Jan 16 2013 Adam Tkac <atkac redhat com> 1.2.80-0.7.20121126svn5015
  348. - rebuild
  349. * Tue Dec 04 2012 Adam Tkac <atkac redhat com> 1.2.80-0.6.20121126svn5015
  350. - rebuild against new fltk
  351. * Mon Nov 26 2012 Adam Tkac <atkac redhat com> 1.2.80-0.5.20121126svn5015
  352. - update to r5015
  353. - build with -fpic instead of -fPIC on all archs except s390/sparc
  354. * Wed Nov 7 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.2.80-0.4.20120905svn4996
  355. - Build with -fPIC to fix FTBFS on ARM
  356. * Wed Oct 31 2012 Adam Jackson <ajax@redhat.com> 1.2.80-0.3.20120905svn4996
  357. - tigervnc12-xorg113-glx.patch: Fix to only init glx on the first server
  358. generation
  359. * Fri Sep 28 2012 Adam Jackson <ajax@redhat.com> 1.2.80-0.2.20120905svn4996
  360. - tigervnc12-xorg113-glx.patch: Re-enable GLX against xserver 1.13
  361. * Fri Aug 17 2012 Adam Tkac <atkac redhat com> 1.2.80-0.1.20120905svn4996
  362. - update to 1.2.80
  363. - remove deprecated patches
  364. - tigervnc-102434.patch
  365. - tigervnc-viewer-reparent.patch
  366. - tigervnc11-java7.patch
  367. - patches merged
  368. - tigervnc11-xorg111.patch
  369. - tigervnc11-xorg112.patch
  370. * Fri Aug 10 2012 Dave Airlie <airlied@redhat.com> 1.1.0-10
  371. - fix build against newer X server
  372. * Mon Jul 23 2012 Adam Jackson <ajax@redhat.com> 1.1.0-9
  373. - Build with the Composite extension for feature parity with other X servers
  374. * Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-8
  375. - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
  376. * Thu Jul 19 2012 Dave Airlie <airlied@redhat.com> 1.1.0-7
  377. - fix building against X.org 1.13
  378. * Wed Apr 04 2012 Adam Jackson <ajax@redhat.com> 1.1.0-6
  379. - RHEL exclusion for -server-module on ppc* too
  380. * Mon Mar 26 2012 Adam Tkac <atkac redhat com> - 1.1.0-5
  381. - clean Xvnc's /tmp environment in service file before startup
  382. - fix building against the latest JAVA 7 and X.Org 1.12
  383. * Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-4
  384. - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
  385. * Tue Nov 22 2011 Adam Tkac <atkac redhat com> - 1.1.0-3
  386. - don't build X.Org devel docs (#755782)
  387. - applet: BR generic java-devel instead of java-gcj-devel (#755783)
  388. - use runuser to start Xvnc in systemd service file (#754259)
  389. - don't attepmt to restart Xvnc session during update/erase (#753216)
  390. * Fri Nov 11 2011 Adam Tkac <atkac redhat com> - 1.1.0-2
  391. - libvnc.so: don't use unexported GetMaster function (#744881)
  392. - remove nasm buildreq
  393. * Mon Sep 12 2011 Adam Tkac <atkac redhat com> - 1.1.0-1
  394. - update to 1.1.0
  395. - update the xorg11 patch
  396. - patches merged
  397. - tigervnc11-glx.patch
  398. - tigervnc11-CVE-2011-1775.patch
  399. - 0001-Use-memmove-instead-of-memcpy-in-fbblt.c-when-memory.patch
  400. * Thu Jul 28 2011 Adam Tkac <atkac redhat com> - 1.0.90-6
  401. - add systemd service file and remove legacy SysV initscript (#717227)
  402. * Thu May 12 2011 Adam Tkac <atkac redhat com> - 1.0.90-5
  403. - make Xvnc buildable against X.Org 1.11
  404. * Tue May 10 2011 Adam Tkac <atkac redhat com> - 1.0.90-4
  405. - viewer can send password without proper validation of X.509 certs
  406. (CVE-2011-1775)
  407. * Wed Apr 13 2011 Adam Tkac <atkac redhat com> - 1.0.90-3
  408. - fix wrong usage of memcpy which caused screen artifacts (#652590)
  409. - don't point to inaccessible link in sysconfig/vncservers (#644975)
  410. * Fri Apr 08 2011 Adam Tkac <atkac redhat com> - 1.0.90-2
  411. - improve compatibility with vinagre client (#692048)
  412. * Tue Mar 22 2011 Adam Tkac <atkac redhat com> - 1.0.90-1
  413. - update to 1.0.90
  414. * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.90-0.32.20110117svn4237
  415. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  416. * Mon Jan 17 2011 Adam Tkac <atkac redhat com> 1.0.90-0.31.20110117svn4237
  417. - fix libvnc.so module loading
  418. * Mon Jan 17 2011 Adam Tkac <atkac redhat com> 1.0.90-0.30.20110117svn4237
  419. - update to r4237
  420. - patches merged
  421. - tigervnc11-optionsdialog.patch
  422. - tigervnc11-rh607866.patch
  423. * Fri Jan 14 2011 Adam Tkac <atkac redhat com> 1.0.90-0.29.20101208svn4225
  424. - improve patch for keyboard issues
  425. * Fri Jan 14 2011 Adam Tkac <atkac redhat com> 1.0.90-0.28.20101208svn4225
  426. - attempt to fix various keyboard-related issues (key repeating etc)
  427. * Fri Jan 07 2011 Adam Tkac <atkac redhat com> 1.0.90-0.27.20101208svn4225
  428. - render "Ok" and "Cancel" buttons in the options dialog correctly
  429. * Wed Dec 15 2010 Jan Görig <jgorig redhat com> 1.0.90-0.26.20101208svn4225
  430. - added vncserver lock file (#662784)
  431. * Fri Dec 10 2010 Adam Tkac <atkac redhat com> 1.0.90-0.25.20101208svn4225
  432. - update to r4225
  433. - patches merged
  434. - tigervnc11-rh611677.patch
  435. - tigervnc11-rh633931.patch
  436. - tigervnc11-xorg1.10.patch
  437. - enable VeNCrypt and PAM support
  438. * Mon Dec 06 2010 Adam Tkac <atkac redhat com> 1.0.90-0.24.20100813svn4123
  439. - rebuild against xserver 1.10.X
  440. - 0001-Return-Success-from-generate_modkeymap-when-max_keys.patch merged
  441. * Wed Sep 29 2010 jkeating - 1.0.90-0.23.20100813svn4123
  442. - Rebuilt for gcc bug 634757
  443. * Tue Sep 21 2010 Adam Tkac <atkac redhat com> 1.0.90-0.22.20100420svn4030
  444. - drop xorg-x11-fonts-misc dependency (#636170)
  445. * Tue Sep 21 2010 Adam Tkac <atkac redhat com> 1.0.90-0.21.20100420svn4030
  446. - improve patch for #633645 (fix tcsh incompatibilities)
  447. * Thu Sep 16 2010 Adam Tkac <atkac redhat com> 1.0.90-0.20.20100813svn4123
  448. - press fake modifiers correctly (#633931)
  449. - supress unneeded debug information emitted from initscript (#633645)
  450. * Wed Aug 25 2010 Adam Tkac <atkac redhat com> 1.0.90-0.19.20100813svn4123
  451. - separate Xvnc, vncpasswd and vncconfig to -server-minimal subpkg (#626946)
  452. - move license to separate subpkg and Requires it from main subpkgs
  453. - Xvnc: handle situations when no modifiers exist well (#611677)
  454. * Fri Aug 13 2010 Adam Tkac <atkac redhat com> 1.0.90-0.18.20100813svn4123
  455. - update to r4123 (#617973)
  456. - add perl requires to -server subpkg (#619791)
  457. * Thu Jul 22 2010 Adam Tkac <atkac redhat com> 1.0.90-0.17.20100721svn4113
  458. - update to r4113
  459. - patches merged
  460. - tigervnc11-rh586406.patch
  461. - tigervnc11-libvnc.patch
  462. - tigervnc11-rh597172.patch
  463. - tigervnc11-rh600070.patch
  464. - tigervnc11-options.patch
  465. - don't own %%{_datadir}/icons directory (#614301)
  466. - minor improvements in the .desktop file (#616340)
  467. - bundled libjpeg configure requires nasm; is executed even if system-wide
  468. libjpeg is used
  469. * Fri Jul 02 2010 Adam Tkac <atkac redhat com> 1.0.90-0.16.20100420svn4030
  470. - build against system-wide libjpeg-turbo (#494458)
  471. - build no longer requires nasm
  472. * Mon Jun 28 2010 Adam Tkac <atkac redhat com> 1.0.90-0.15.20100420svn4030
  473. - vncserver: accept <+optname> option when specified as the first one
  474. * Thu Jun 24 2010 Adam Tkac <atkac redhat com> 1.0.90-0.14.20100420svn4030
  475. - fix memory leak in Xvnc input code (#597172)
  476. - don't crash when receive negative encoding (#600070)
  477. - explicitly disable udev configuration support
  478. - add gettext-autopoint to BR
  479. * Mon Jun 14 2010 Adam Tkac <atkac redhat com> 1.0.90-0.13.20100420svn4030
  480. - update URL about SSH tunneling in the sysconfig file (#601996)
  481. * Fri Jun 11 2010 Adam Tkac <atkac redhat com> 1.0.90-0.12.20100420svn4030
  482. - use newer gettext
  483. - autopoint now uses git instead of cvs, adjust BuildRequires appropriately
  484. * Thu May 13 2010 Adam Tkac <atkac redhat com> 1.0.90-0.11.20100420svn4030
  485. - link libvnc.so "now" to catch "undefined symbol" errors during Xorg startup
  486. - use always XkbConvertCase instead of XConvertCase (#580159, #586406)
  487. - don't link libvnc.so against libXi.la, libdix.la and libxkb.la; use symbols
  488. from Xorg instead
  489. * Thu May 13 2010 Adam Tkac <atkac redhat com> 1.0.90-0.10.20100420svn4030
  490. - update to r4030 snapshot
  491. - patches merged to upstream
  492. - tigervnc11-rh522369.patch
  493. - tigervnc11-rh551262.patch
  494. - tigervnc11-r4002.patch
  495. - tigervnc11-r4014.patch
  496. * Thu Apr 08 2010 Adam Tkac <atkac redhat com> 1.0.90-0.9.20100219svn3993
  497. - add server-applet subpackage which contains Java vncviewer applet
  498. - fix Java applet; it didn't work when run from web browser
  499. - add xorg-x11-xkb-utils to server Requires
  500. * Fri Mar 12 2010 Adam Tkac <atkac redhat com> 1.0.90-0.8.20100219svn3993
  501. - add French translation to vncviewer.desktop (thanks to Alain Portal)
  502. * Thu Mar 04 2010 Adam Tkac <atkac redhat com> 1.0.90-0.7.20100219svn3993
  503. - don't crash during pixel format change (#522369, #551262)
  504. * Mon Mar 01 2010 Adam Tkac <atkac redhat com> 1.0.90-0.6.20100219svn3993
  505. - add mesa-dri-drivers and xkeyboard-config to -server Requires
  506. - update to r3993 1.0.90 snapshot
  507. - tigervnc11-noexecstack.patch merged
  508. - tigervnc11-xorg18.patch merged
  509. - xserver18.patch is no longer needed
  510. * Wed Jan 27 2010 Jan Gorig <jgorig redhat com> 1.0.90-0.5.20091221svn3929
  511. - initscript LSB compliance fixes (#523974)
  512. * Fri Jan 22 2010 Adam Tkac <atkac redhat com> 1.0.90-0.4.20091221svn3929
  513. - mark stack as non-executable in jpeg ASM code
  514. - add xorg-x11-xauth to Requires
  515. - add support for X.Org 1.8
  516. - drop shave sources, they are no longer needed
  517. * Thu Jan 21 2010 Adam Tkac <atkac redhat com> 1.0.90-0.3.20091221svn3929
  518. - drop tigervnc-xorg25909.patch, it has been merged to X.Org upstream
  519. * Thu Jan 07 2010 Adam Tkac <atkac redhat com> 1.0.90-0.2.20091221svn3929
  520. - add patch for upstream X.Org issue #25909
  521. - add libXdmcp-devel to build requires to build Xvnc with XDMCP support (#552322)
  522. * Mon Dec 21 2009 Adam Tkac <atkac redhat com> 1.0.90-0.1.20091221svn3929
  523. - update to 1.0.90 snapshot
  524. - patches merged
  525. - tigervnc10-compat.patch
  526. - tigervnc10-rh510185.patch
  527. - tigervnc10-rh524340.patch
  528. - tigervnc10-rh516274.patch
  529. * Mon Oct 26 2009 Adam Tkac <atkac redhat com> 1.0.0-3
  530. - create Xvnc keyboard mapping before first keypress (#516274)
  531. * Thu Oct 08 2009 Adam Tkac <atkac redhat com> 1.0.0-2
  532. - update underlying X source to 1.6.4-0.3.fc11
  533. - remove bogus '-nohttpd' parameter from /etc/sysconfig/vncservers (#525629)
  534. - initscript LSB compliance fixes (#523974)
  535. - improve -LowColorSwitch documentation and handling (#510185)
  536. - honor dotWhenNoCursor option (and it's changes) every time (#524340)
  537. * Fri Aug 28 2009 Adam Tkac <atkac redhat com> 1.0.0-1
  538. - update to 1.0.0
  539. - tigervnc10-rh495457.patch merged to upstream
  540. * Mon Aug 24 2009 Karsten Hopp <karsten@redhat.com> 0.0.91-0.17
  541. - fix ifnarch s390x for server-module
  542. * Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 0.0.91-0.16
  543. - rebuilt with new openssl
  544. * Tue Aug 04 2009 Adam Tkac <atkac redhat com> 0.0.91-0.15
  545. - make Xvnc compilable
  546. * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.91-0.14.1
  547. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  548. * Mon Jul 13 2009 Adam Tkac <atkac redhat com> 0.0.91-0.13.1
  549. - don't write warning when initscript is called with condrestart param (#508367)
  550. * Tue Jun 23 2009 Adam Tkac <atkac redhat com> 0.0.91-0.13
  551. - temporary use F11 Xserver base to make Xvnc compilable
  552. - BuildRequires: libXi-devel
  553. - don't ship tigervnc-server-module on s390/s390x
  554. * Mon Jun 22 2009 Adam Tkac <atkac redhat com> 0.0.91-0.12
  555. - fix local rendering of cursor (#495457)
  556. * Thu Jun 18 2009 Adam Tkac <atkac redhat com> 0.0.91-0.11
  557. - update to 0.0.91 (1.0.0 RC1)
  558. - patches merged
  559. - tigervnc10-rh499401.patch
  560. - tigervnc10-rh497592.patch
  561. - tigervnc10-rh501832.patch
  562. - after discusion in upstream drop tigervnc-bounds.patch
  563. - configure flags cleanup
  564. * Thu May 21 2009 Adam Tkac <atkac redhat com> 0.0.90-0.10
  565. - rebuild against 1.6.1.901 X server (#497835)
  566. - disable i18n, vncviewer is not UTF-8 compatible (#501832)
  567. * Mon May 18 2009 Adam Tkac <atkac redhat com> 0.0.90-0.9
  568. - fix vncpasswd crash on long passwords (#499401)
  569. - start session dbus daemon correctly (#497592)
  570. * Mon May 11 2009 Adam Tkac <atkac redhat com> 0.0.90-0.8.1
  571. - remove merged tigervnc-manminor.patch
  572. * Tue May 05 2009 Adam Tkac <atkac redhat com> 0.0.90-0.8
  573. - update to 0.0.90
  574. * Thu Apr 30 2009 Adam Tkac <atkac redhat com> 0.0.90-0.7.20090427svn3789
  575. - server package now requires xorg-x11-fonts-misc (#498184)
  576. * Mon Apr 27 2009 Adam Tkac <atkac redhat com> 0.0.90-0.6.20090427svn3789
  577. - update to r3789
  578. - tigervnc-rh494801.patch merged
  579. - tigervnc-newfbsize.patch is no longer needed
  580. - fix problems when vncviewer and Xvnc run on different endianess (#496653)
  581. - UltraVNC and TightVNC clients work fine again (#496786)
  582. * Wed Apr 08 2009 Adam Tkac <atkac redhat com> 0.0.90-0.5.20090403svn3751
  583. - workaround broken fontpath handling in vncserver script (#494801)
  584. * Fri Apr 03 2009 Adam Tkac <atkac redhat com> 0.0.90-0.4.20090403svn3751
  585. - update to r3751
  586. - patches merged
  587. - tigervnc-xclients.patch
  588. - tigervnc-clipboard.patch
  589. - tigervnc-rh212985.patch
  590. - basic RandR support in Xvnc (resize of the desktop)
  591. - use built-in libjpeg (SSE2/MMX accelerated encoding on x86 platform)
  592. - use Tight encoding by default
  593. - use TigerVNC icons
  594. * Tue Mar 03 2009 Adam Tkac <atkac redhat com> 0.0.90-0.3.20090303svn3631
  595. - update to r3631
  596. * Tue Mar 03 2009 Adam Tkac <atkac redhat com> 0.0.90-0.2.20090302svn3621
  597. - package review related fixes
  598. * Mon Mar 02 2009 Adam Tkac <atkac redhat com> 0.0.90-0.1.20090302svn3621
  599. - initial package, r3621