vino-vl.spec 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. %define gtk2_version 2.16.0
  2. %define gconf2_version 2.24.0
  3. %define libgcrypt_version 1.2.0
  4. %define avahi_version 0.6.17
  5. Summary: A remote desktop system for GNOME
  6. Summary(ja): GNOME 用リモートデスクトップシステム
  7. Name: vino
  8. Version: 2.28.2
  9. Release: 1%{?_dist_release}
  10. URL: http://www.gnome.org
  11. License: GPL
  12. Group: User Interface/Desktops
  13. Source0: %{name}-%{version}.tar.bz2
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  15. Requires: GConf2 >= %{gconf2_version}
  16. Requires: gtk2 >= %{gtk2_version}
  17. Requires: GConf2 >= %{gconf2_version}
  18. Requires: libgcrypt >= %{libgcrypt_version}
  19. Requires: avahi >= %{avahi_version}
  20. Requires: avahi-glib >= %{avahi_version}
  21. Requires: NetworkManager >= 0.7
  22. BuildRequires: gtk2-devel >= %{gtk2_version}
  23. BuildRequires: GConf2-devel >= %{gconf2_version}
  24. BuildRequires: dbus-devel >= 1.2.3
  25. BuildRequires: libsoup-devel >= 2.24.0
  26. BuildRequires: libnotify-devel >= 0.4.4
  27. BuildRequires: libgcrypt-devel >= %{libgcrypt_version}
  28. BuildRequires: avahi-devel >= %{avahi_version}
  29. BuildRequires: avahi-glib-devel >= %{avahi_version}
  30. BuildRequires: libgnome-keyring-devel >= 2.30
  31. BuildRequires: NetworkManager-devel >= 0.7
  32. BuildRequires: unique-devel >= 1.0.0
  33. BuildRequires: libSM-devel
  34. BuildRequires: desktop-file-utils
  35. %description
  36. Vino is a VNC server for GNOME. It allows remote users to
  37. connect to a running GNOME session using VNC.
  38. %description -l ja
  39. Vine は GNOME 用の VNC サーバです。Vino によりリモートユーザが
  40. VNC を利用して稼働中のGNOME セッション接続することができるよう
  41. になります。
  42. %prep
  43. %setup -q
  44. %build
  45. %configure \
  46. --disable-schemas-install \
  47. --enable-avahi \
  48. --disable-gnutls \
  49. --disable-session-support \
  50. --disable-telepathy \
  51. --enable-libnotify \
  52. --enable-network-manager \
  53. --enable-gnome-keyring \
  54. --disable-http-server \
  55. --enable-libunique=yes
  56. %__make %{?_smp_mflags}
  57. %install
  58. rm -rf $RPM_BUILD_ROOT
  59. export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
  60. %makeinstall
  61. unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
  62. desktop-file-install --vendor gnome --delete-original \
  63. --dir $RPM_BUILD_ROOT%{_datadir}/applications \
  64. --add-only-show-in GNOME \
  65. $RPM_BUILD_ROOT%{_datadir}/applications/vino-preferences.desktop
  66. # stuff we don't want
  67. rm -rf $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/icon-theme.cache
  68. %find_lang %{name}
  69. %clean
  70. rm -rf $RPM_BUILD_ROOT
  71. %post
  72. export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
  73. SCHEMAS="vino-server.schemas"
  74. for S in $SCHEMAS; do
  75. gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/$S >& /dev/null ||:
  76. done
  77. touch --no-create %{_datadir}/icons/hicolor
  78. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  79. /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor ||:
  80. fi
  81. %postun
  82. touch --no-create %{_datadir}/icons/hicolor
  83. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  84. /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor ||:
  85. fi
  86. %files -f %{name}.lang
  87. %defattr(-,root,root)
  88. %doc AUTHORS ChangeLog COPYING NEWS README docs/TODO docs/remote-desktop.txt
  89. %{_bindir}/*
  90. %{_libexecdir}/*
  91. %{_datadir}/applications/*.desktop
  92. %{_datadir}/dbus-1/services/*
  93. %{_datadir}/vino
  94. %{_sysconfdir}/gconf/schemas/*.schemas
  95. %{_sysconfdir}/xdg/autostart/vino-server.desktop
  96. %changelog
  97. * Sun Apr 11 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.2-1
  98. - new upstream release
  99. - add BuildRequires: libSM-devel, desktop-file-utils
  100. - change BuildRequires: gnome-keyring-devel -> libgnome-keyring-devel
  101. * Sun Nov 8 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.28.1-1
  102. - new upstream release
  103. * Thu May 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.2-1
  104. - new upstream release
  105. * Sat Apr 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.1-1
  106. - new upstream release
  107. * Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-1
  108. - new upstream release
  109. * Wed Oct 28 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.1-1
  110. - new upstream release
  111. * Sat Sep 27 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0-1
  112. - new upstream release
  113. * Sun Aug 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.22.2-1
  114. - new upstream release
  115. * Sat Aug 16 2008 Shu KONNO <owa@bg.wakwak.com> 2.18.1-1vl5
  116. - applied new versioning policy, spec in utf-8
  117. * Sat Apr 28 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.1-0vl1
  118. - new upstream release
  119. * Sat Apr 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.13.5-0vl3
  120. - run gtk-update-icon-cache in %%post script.
  121. * Mon Mar 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.13.5-0vl2
  122. - enable avahi, add BuildRequires: avahi-devel
  123. * Wed Mar 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.13.5-0vl1
  124. - new upstream release
  125. * Mon Sep 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.0-0vl1
  126. - new upstream release
  127. * Tue Mar 22 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.0-0vl1
  128. - new upstream version
  129. * Tue Nov 30 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.1-0vl1
  130. - initial build for Vine Linux
  131. - add japanese summary and description.
  132. * Tue Oct 12 2004 Mark McLoughlin <markmc@redhat.com> 2.8.1-1
  133. - Update to 2.8.1
  134. - Remove backported fixes
  135. * Thu Oct 7 2004 Mark McLoughlin <markmc@redhat.com> 2.8.0.1-1.1
  136. - Don't hang with metacity's "reduced resources" mode (#134240)
  137. - Improve the key repeat rate situation a good deal (#134451)
  138. * Wed Sep 29 2004 Mark McLoughlin <markmc@redhat.com> 2.8.0.1-1
  139. - Update to 2.8.0.1
  140. * Tue Sep 21 2004 Mark McLoughlin <markmc@redhat.com> 2.8.0-1
  141. - Update to 2.8.0
  142. - Remove upstreamed work-without-gnutls patch
  143. * Tue Sep 7 2004 Matthias Clasen <mclasen@redhat.com> 2.7.92-3
  144. - Disable help button until there is help (#131632)
  145. * Wed Sep 1 2004 Mark McLoughlin <markmc@redhat.com> 2.7.92-2
  146. - Add patch to fix hang without GNU TLS (bug #131354)
  147. * Mon Aug 30 2004 Mark McLoughlin <markmc@redhat.com> 2.7.92-1
  148. - Update to 2.7.92
  149. * Tue Aug 17 2004 Mark McLoughlin <markmc@redhat.com> 2.7.91-1
  150. - Update to 2.7.91
  151. * Mon Aug 16 2004 Mark McLoughlin <markmc@redhat.com> 2.7.90-2
  152. - Define libgcrypt_version
  153. * Thu Aug 12 2004 Mark McLoughlin <markmc@redhat.com> 2.7.90-1
  154. - Update to 2.7.90
  155. * Wed Aug 4 2004 Mark McLoughlin <markmc@redhat.com> 2.7.4-1
  156. - Update to 2.7.4
  157. * Tue Jul 13 2004 Mark McLoughlin <markmc@redhat.com> 2.7.3.1-1
  158. - Initial build.