vinagre-vl.spec 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. Summary: VNC client for the GNOME desktop
  2. Summary(ja): GNOME デスクトップ用 VNC クライアント
  3. Name: vinagre
  4. Version: 3.1.90
  5. Release: 1%{?_dist_release}
  6. Group: Applications/System
  7. License: GPLv2+
  8. URL: http://www.gnome.org/projects/vinagre/
  9. Source0: http://download.gnome.org/sources/%{name}/3.1/%{name}-%{version}.tar.xz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: gtk-vnc-devel >= 0.3.10
  12. BuildRequires: glib2-devel >= 2.26.0
  13. BuildRequires: gtk3-devel >= 3.0.0
  14. BuildRequires: GConf2-devel >= 2.32.0
  15. BuildRequires: avahi-ui-devel >= 0.6.22
  16. BuildRequires: avahi-gobject-devel >= 0.6.22
  17. BuildRequires: perl(XML::Parser) gettext intltool
  18. BuildRequires: desktop-file-utils
  19. BuildRequires: gnome-doc-utils
  20. BuildRequires: libgnome-keyring-devel >= 2.32.0
  21. BuildRequires: gnome-panel-devel
  22. BuildRequires: libxml2-devel >= 2.6.31
  23. BuildRequires: vte-devel >= 0.26
  24. BuildRequires: libpeas-devel >= 0.7.2
  25. BuildRequires: gtk-vnc-devel >= 0.4.3
  26. Obsoletes: %{name}-devel < 3.1.0
  27. Vendor: Project Vine
  28. Distribution: Vine Linux
  29. Packager: Takemikaduchi
  30. %description
  31. Vinagre is a VNC client for the GNOME desktop environment.
  32. %prep
  33. %setup -q
  34. %build
  35. %configure \
  36. --disable-scrollkeeper \
  37. --disable-schemas-install \
  38. --disable-telepathy \
  39. --enable-avahi
  40. make %{?_smp_mflags}
  41. %install
  42. rm -rf $RPM_BUILD_ROOT
  43. export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
  44. make install DESTDIR=$RPM_BUILD_ROOT
  45. # Remove text files installed by vinagre, we install them in a versioned
  46. # directory in the files section
  47. rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/vinagre/
  48. desktop-file-install \
  49. --remove-category=Application \
  50. --add-category=GTK \
  51. --delete-original \
  52. --dir=$RPM_BUILD_ROOT%{_datadir}/applications \
  53. $RPM_BUILD_ROOT%{_datadir}/applications/vinagre.desktop
  54. %find_lang vinagre --with-gnome
  55. %clean
  56. rm -rf $RPM_BUILD_ROOT
  57. %post
  58. update-desktop-database -q
  59. touch %{_datadir}/icons/hicolor
  60. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  61. /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor
  62. fi
  63. %postun
  64. update-desktop-database -q
  65. update-mime-database %{_datadir}/mime >/dev/null
  66. touch %{_datadir}/icons/hicolor
  67. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  68. /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor
  69. fi
  70. glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
  71. %posttrans
  72. glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
  73. %files -f vinagre.lang
  74. %defattr(-,root,root,-)
  75. %{_bindir}/vinagre
  76. %{_libdir}/vinagre-3.0
  77. %{_datadir}/GConf/gsettings/org.gnome.Vinagre.convert
  78. %{_datadir}/applications/*.desktop
  79. %{_datadir}/glib-2.0/schemas/org.gnome.Vinagre.gschema.xml
  80. %{_datadir}/icons/hicolor/*/*/*
  81. %{_datadir}/mime/packages/vinagre-mime.xml
  82. %{_datadir}/%{name}/
  83. %doc %{_mandir}/man1/vinagre.1.gz
  84. %doc README NEWS COPYING AUTHORS
  85. %changelog
  86. * Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.90-1
  87. - new upstream release
  88. * Sun Aug 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.5-1
  89. - new upstream release
  90. * Tue Aug 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.4-1
  91. - new upstream release
  92. - add BuildRequires: libpeas-devel, gtk-vnc-devel
  93. - delete -devel sub package
  94. * Thu Dec 09 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.3-2
  95. - create -devel sub package
  96. * Tue Oct 05 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.3-1
  97. - new upstream release
  98. - change BuildRequires: gnome-panel-devel instead of gnome-panel
  99. * Tue Sep 28 2010 Shu KONNO <owa@bg.wakwak.com> 2.30.2-2
  100. - rebuilt with rpm-4.8.1 for pkg-config
  101. * Tue Jun 29 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.2-1
  102. - new upstream release
  103. * Sun Apr 11 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
  104. - new upstream release
  105. - change BuildRequires: gnome-keyring-devel -> libgnome-keyring-devel
  106. * Sun Nov 8 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.28.1-1
  107. - new upstream release
  108. * Thu May 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.2-1
  109. - new upstream release
  110. * Sat Apr 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.1-1
  111. - new upstream release
  112. * Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-1
  113. - new upstream release
  114. * Mon Jan 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.2-1
  115. - new upstream release
  116. - build with gnutls-2.6.3
  117. * Wed Oct 28 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.1-1
  118. - new upstream release
  119. * Sat Sep 27 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0-1
  120. - new upstream release
  121. * Sat Sep 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.23.92-1
  122. - initial build for Vine Linux
  123. * Mon Sep 8 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.92-1
  124. - Update to 2.23.92
  125. * Tue Sep 2 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.91-1
  126. - Update to 2.23.91
  127. * Fri Aug 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.90-1
  128. - Update to 2.23.90
  129. * Wed Jun 25 2008 - Bastien Nocera <bnocera@redhat.com> - 2.23.4-2
  130. - Rebuild
  131. * Tue Jun 17 2008 - Bastien Nocera <bnocera@redhat.com> - 2.23.4-1
  132. - Update to 2.23.4
  133. - Fix URL (#451746)
  134. * Wed Jun 4 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.3.1-1
  135. - Update to 2.23.3.1
  136. * Fri Apr 25 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.1-1
  137. - Update to 2.23.1
  138. * Mon Apr 7 2008 Matthias Clasen <mclasen@redhat.com> - 0.5.1-1
  139. - Update to 0.5.1
  140. * Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 0.5.0-1
  141. - Update to 0.5.0
  142. * Mon Feb 25 2008 Matthias Clasen <mclasen@redhat.com> - 0.4.92-1
  143. - Update to 0.4.92
  144. * Mon Feb 18 2008 Matthias Clasen <mclasen@redhat.com> - 0.4.91-2
  145. - Spec file fixes
  146. * Tue Feb 12 2008 Matthias Clasen <mclasen@redhat.com> - 0.4.91-1
  147. - Update to 0.4.91
  148. * Tue Jan 29 2008 Matthias Clasen <mclasen@redhat.com> - 0.4.90-1
  149. - Update to 0.4.90
  150. * Thu Dec 13 2007 - Bastien Nocera <bnocera@redhat.com> - 0.4-1
  151. - Update to 0.4 and drop obsolete patches
  152. * Fri Nov 23 2007 - Bastien Nocera <bnocera@redhat.com> - 0.3-3
  153. - Fix crasher when passing broken options on the command-line (#394671)
  154. * Thu Oct 25 2007 - Bastien Nocera <bnocera@redhat.com> - 0.3-2
  155. - Fix crasher when setting a favourite with no password (#352371)
  156. * Mon Sep 24 2007 - Bastien Nocera <bnocera@redhat.com> - 0.3-1
  157. - Update to 0.3
  158. * Wed Aug 22 2007 - Bastien Nocera <bnocera@redhat.com> - 0.2-1
  159. - First version
  160. - Fix plenty of comments from Ray Strode as per review
  161. - Have work-around for BZ #253734