ekiga-vl.spec 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. Summary: A Gnome based SIP/H323 teleconferencing application
  2. Summary(ja): GNOME ベースの SIP/H323 遠隔会議アプリケーション
  3. Name: ekiga
  4. Version: 4.0.0
  5. Release: 1%{?_dist_release}
  6. URL: http://www.ekiga.org/
  7. Source0: http://www.ekiga.org/ekiga-%{version}.tar.xz
  8. License: GPL
  9. Group: Applications/Communications
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: gtk2-devel >= 2.14.0
  12. BuildRequires: GConf2-devel >= 2.24.0
  13. BuildRequires: libgnomeui-devel >= 2.24.0
  14. BuildRequires: libgnome-devel >= 2.24.0
  15. BuildRequires: avahi-devel >= 0.6.23
  16. BuildRequires: avahi-glib-devel >= 0.6.23
  17. BuildRequires: openldap-devel
  18. BuildRequires: ptlib-devel >= 2.10.9
  19. BuildRequires: opal-devel >= 3.10.9
  20. BuildRequires: libxml2-devel >= 2.6.0
  21. BuildRequires: SDL-devel
  22. BuildRequires: intltool >= 0.22
  23. BuildRequires: pkgconfig
  24. BuildRequires: scrollkeeper
  25. BuildRequires: alsa-lib-devel
  26. BuildRequires: gettext
  27. BuildRequires: evolution-data-server-devel >= 2.32.0
  28. BuildRequires: gnome-doc-utils >= 0.3.2
  29. BuildRequires: desktop-file-utils
  30. BuildRequires: dbus-devel
  31. BuildRequires: dbus-glib-devel
  32. BuildRequires: libsigc++-devel
  33. BuildRequires: libXv-devel
  34. BuildRequires: libnotify-devel
  35. BuildRequires: libboost-devel
  36. BuildRequires: libboost-signals
  37. BuildRequires: gnome-icon-theme >= 3.0.0
  38. Requires(post): GConf2, scrollkeeper
  39. Requires(postun): scrollkeeper
  40. Obsoletes: gnomemeeting
  41. Vendor: Project Vine
  42. Distribution: Vine Linux
  43. %description
  44. Ekiga is a tool to communicate with video and audio over the internet.
  45. It uses the standard SIP and H323 protocols.
  46. %prep
  47. %setup -q
  48. %build
  49. CXXFLAGS="$RPM_OPT_FLAGS -DLDAP_DEPRECATED=1 -fPIC"
  50. %configure \
  51. --disable-static \
  52. --disable-scrollkeeper \
  53. --disable-schemas-install
  54. make %{?_smp_mflags}
  55. %install
  56. rm -rf $RPM_BUILD_ROOT
  57. export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
  58. make install DESTDIR=$RPM_BUILD_ROOT
  59. unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
  60. rm -rf $RPM_BUILD_ROOT/var/scrollkeeper
  61. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  62. desktop-file-install \
  63. --vendor gnome \
  64. --dir=$RPM_BUILD_ROOT%{_datadir}/applications \
  65. --delete-original \
  66. --copy-generic-name-to-name \
  67. $RPM_BUILD_ROOT%{_datadir}/applications/ekiga.desktop
  68. %find_lang %{name} --with-gnome
  69. %clean
  70. rm -rf $RPM_BUILD_ROOT
  71. %post
  72. export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
  73. gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/ekiga.schemas > /dev/null 2>&1
  74. gconftool-2 --shutdown
  75. (yes | ekiga-config-tool --install-schemas) > /dev/null 2>&1 ||:
  76. update-desktop-database %{_datadir}/applications >& /dev/null ||:
  77. scrollkeeper-update -q > /dev/null ||:
  78. touch --no-create %{_datadir}/icons/hicolor
  79. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  80. gtk-update-icon-cache -q %{_datadir}/icons/hicolor
  81. fi
  82. %pre
  83. if [ "$1" -gt 1 ]; then
  84. export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
  85. gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/ekiga.schemas > /dev/null 2>&1
  86. fi
  87. %preun
  88. if [ "$1" -eq 0 ]; then
  89. export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
  90. gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/ekiga.schemas > /dev/null 2>&1
  91. fi
  92. %postun
  93. update-desktop-database %{_datadir}/applications >& /dev/null ||:
  94. scrollkeeper-update -q > /dev/null ||:
  95. touch --no-create %{_datadir}/icons/hicolor
  96. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  97. gtk-update-icon-cache -q %{_datadir}/icons/hicolor
  98. fi
  99. %files -f ekiga.lang
  100. %defattr(-,root,root)
  101. %doc AUTHORS COPYING ChangeLog NEWS README
  102. %{_sysconfdir}/gconf/schemas/ekiga.schemas
  103. %{_bindir}/ekiga
  104. %{_bindir}/ekiga-config-tool
  105. %{_bindir}/ekiga-helper
  106. %{_libdir}/%{name}/%{version}/libekiga.so
  107. %{_libdir}/%{name}/%{version}/plugins/*.so
  108. %{_datadir}/applications/gnome-ekiga.desktop
  109. %{_datadir}/dbus-1/services/*
  110. %{_datadir}/pixmaps/*
  111. %{_datadir}/man/*/*
  112. %{_datadir}/sounds/ekiga
  113. %{_datadir}/icons/hicolor/*/apps/*
  114. %changelog
  115. * Fri Jan 04 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.0.0-1
  116. - new upstream release
  117. - add BuildRequires; gnome-icon-theme
  118. * Sun Sep 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.9.90-1
  119. - new upstream release
  120. * Thu Apr 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.3.2-2
  121. - rebuild with evolution-data-server-3.4.0
  122. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.3.2-1
  123. - new upstream release
  124. * Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.3.1-2
  125. - rebuild with evolution-data-server-3.1.90
  126. * Tue Aug 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.3.1-1
  127. - new upstream release
  128. - add BuildRequires: libnotify-devel, libboost-devel, libboost-signals
  129. * Mon Jan 10 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.7-4
  130. - rebuild with openssl-1.0.0c
  131. * Tue Oct 05 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.7-3
  132. - rebuild with evolution-data-server-2.32.0
  133. * Tue Jun 22 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.7-2
  134. - rebuild with evolution-data-server-2.30.2
  135. * Mon Jun 21 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.7-1
  136. - new upstream release
  137. * Sun Mar 21 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.6-1
  138. - new upstream release
  139. - add BuildRequires: libXv-devel
  140. * Sat Jul 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.4-1
  141. - new upstream release
  142. * Thu May 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2.1-1
  143. - new upstream release
  144. * Sat Apr 4 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.2-1
  145. - new upstream release
  146. * Wed Oct 29 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.1-1
  147. - new upstream release
  148. * Tue Sep 30 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.0-1
  149. - new upstream release
  150. * Sun Sep 28 2008 Shu KONNO <owa@bg.wakwak.com> 2.0.11-2vl5
  151. - built with gnome-2.24
  152. * Mon Sep 22 2008 Shu KONNO <owa@bg.wakwak.com> 2.0.11-1vl5
  153. - applied new versioning policy
  154. * Sat Sep 29 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.0.11-0vl1
  155. - new upstream release
  156. * Sat Jul 14 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.0.9-0vl5
  157. - rebuilt with evolution-data-server-devel 1.10.1
  158. * Tue May 22 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.0.9-0vl4
  159. - add BuildRequires: dbus-glib-devel
  160. * Sat May 12 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.0.9-0vl3
  161. - rebuilt with new toolchain
  162. * Mon Apr 30 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.0.9-0vl2
  163. - rebuilt with dbus 1.0.2
  164. * Sat Apr 14 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.0.9-0vl1
  165. - new upstream release
  166. * Sat Feb 24 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.0.5-0vl1
  167. - new upstream release
  168. * Sun Feb 4 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.0.4-1vl1
  169. - initial built for Vine Linux
  170. * Mon Jan 22 2007 Daniel Veillard <veillard@redhat.com> - 2.0.4-1
  171. - Upgrade to ekiga-2.0.4
  172. * Thu Nov 2 2006 Daniel Veillard <veillard@redhat.com> - 2.0.3-3
  173. - Resolves: rhbz#201535
  174. - fixes build-requires for opal-devel and pwlib-devel
  175. * Sat Oct 28 2006 Matthias Clasen <mclasen@redhat.com> - 2.0.3-2
  176. - Rebuild against evolution-data-server 1.9
  177. * Sat Oct 21 2006 Matthias Clasen <mclasen@redhat.com> - 2.0.3-1
  178. - Update to 2.0.3
  179. * Sat Sep 30 2006 Matthias Clasen <mclasen@redhat.com> - 2.0.2-7
  180. - Make the status icon work in transparent panels
  181. * Thu Aug 31 2006 Matthias Clasen <mclasen@redhat.com> - 2.0.2-6
  182. - Fix translator credits (197871)
  183. * Mon Aug 7 2006 Matthew Barnes <mbarnes@redhat.com> - 2.0.2-5
  184. - Rebuild against evolution-data-server-1.7.91
  185. * Sat Aug 5 2006 Caolan McNamara <caolanm@redhat.com> - 2.0.2-4
  186. - rebuild against new e-d-s
  187. * Tue Aug 1 2006 Daniel Veillard <veillard@redhat.com> - 2.0.2-3
  188. - rebuilt for #200960
  189. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.0.2-1.1
  190. - rebuild
  191. * Wed May 31 2006 Daniel Veillard <veillard@redhat.com> - 2.0.2-1
  192. - new release of ekiga 2.0.2
  193. - activating Zeroconf support though avahi
  194. * Mon May 22 2006 Jesse Keating <jkeating@redhat.com> - 2.0.1-3
  195. - Fix BuildRequires and Requires(post), Requires(postun)
  196. * Wed Mar 15 2006 Daniel Veillard <veillard@redhat.com> - 2.0.1-2
  197. - run 'ekiga-config-tool --install-schemas' in %post, c.f. #178929
  198. * Tue Mar 14 2006 Daniel Veillard <veillard@redhat.com> - 2.0.1-1
  199. - last minute bug rerelease 2.0.1
  200. * Mon Mar 13 2006 Daniel Veillard <veillard@redhat.com> - 2.0.0-1
  201. - final release of 2.0.0
  202. * Mon Feb 20 2006 Karsten Hopp <karsten@redhat.de> 1.99.1-2
  203. - Buildrequires: gnome-doc-utils
  204. * Mon Feb 13 2006 Daniel Veillard <veillard@redhat.com> - 1.99.1-1
  205. - new beta release issued
  206. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.99.0-3.2
  207. - bump again for double-long bug on ppc(64)
  208. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.99.0-3.1
  209. - rebuilt for new gcc4.1 snapshot and glibc changes
  210. * Sat Jan 28 2006 Daniel Veillard <veillard@redhat.com> - 1.99.0-3
  211. - Rebuilt following a libedataserver revision
  212. * Fri Jan 27 2006 Matthias Clasen <mclasen@redhat.com> - 1.99.0-2
  213. - Use the upstream .desktop file
  214. * Tue Jan 24 2006 Daniel Veillard <veillard@redhat.com> - 1.99.0-1
  215. - initial version based on the 1.99.0 beta and gnomemeeting spec file.