konversation-vl.spec 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. Name: konversation
  2. Summary: A user friendly IRC client
  3. Summary(ja): 使い易い IRC クライアント
  4. Version: 1.3.1
  5. Release: 1%{?_dist_release}
  6. Group: Applications/Internet
  7. License: GPLv2+
  8. URL: http://konversation.kde.org/
  9. Source0: ftp://ftp.kde.org/pub/kde/stable/konversation/%{version}/src/konversation-%{version}.tar.bz2
  10. ## upstream patches
  11. ## Vine patches
  12. Patch100: konversation-1.2.3-irccharsets.patch
  13. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  14. BuildRequires: desktop-file-utils
  15. BuildRequires: gettext
  16. BuildRequires: kdelibs4-devel
  17. BuildRequires: kdepimlibs-devel
  18. BuildRequires: libXScrnSaver-devel
  19. BuildRequires: phonon-devel
  20. BuildRequires: qca2-devel
  21. %description
  22. A simple and easy to use IRC client with support for
  23. strikeout; multi-channel joins; away / unaway messages;
  24. ignore list functionality; support for foreign
  25. language characters; auto-connect to server; optional timestamps
  26. to chat windows; configurable background colors and much more
  27. %prep
  28. %setup -q -n %{name}-%{version}%{?pre:-%{pre}}
  29. %patch100 -p1 -b .jis7
  30. %build
  31. mkdir -p %{_target_platform}
  32. pushd %{_target_platform}
  33. unset QTDIR || : ; . /etc/profile.d/qt4.sh
  34. %cmake \
  35. -DCMAKE_BUILD_TYPE=release \
  36. -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \
  37. -DDATA_INSTALL_DIR:PATH=%{_datadir}/kde4/apps \
  38. -DINCLUDE_INSTALL_DIR:PATH=%{_includedir}/kde4 \
  39. -DLIB_INSTALL_DIR:PATH=%{_libdir} \
  40. -DLIBEXEC_INSTALL_DIR:PATH=%{_libexecdir}/kde4 \
  41. -DSYSCONF_INSTALL_DIR:PATH=%{_sysconfdir} \
  42. ..
  43. popd
  44. make %{?_smp_mflags} -C %{_target_platform}
  45. %install
  46. rm -rf %{buildroot}
  47. make install/fast DESTDIR=%{buildroot} -C %{_target_platform}
  48. ## File lists
  49. # locale's
  50. #find_lang %{name} --with-kde
  51. %find_lang %{name}
  52. %check
  53. desktop-file-validate %{buildroot}%{_datadir}/applications/kde4/konversation.desktop
  54. %clean
  55. rm -rf %{buildroot}
  56. %post
  57. touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
  58. %posttrans
  59. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||:
  60. %postun
  61. if [ $1 -eq 0 ] ; then
  62. touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
  63. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null ||:
  64. fi
  65. %files -f %{name}.lang
  66. %defattr(-,root,root,-)
  67. %doc ChangeLog COPYING README TODO
  68. %{_bindir}/konversation
  69. %{_datadir}/applications/kde4/konversation.desktop
  70. %{_datadir}/kde4/services/*.protocol
  71. %{_datadir}/kde4/apps/konversation/
  72. %{_datadir}/kde4/apps/kconf_update/konversation*
  73. %{_datadir}/icons/hicolor/*/*/*
  74. %doc %{_datadir}/doc/HTML/*
  75. %changelog
  76. * Sat Jan 15 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.3.1-1
  77. - new upstream release
  78. * Sun Mar 21 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.2.3-2
  79. - initial build for Vine Linux
  80. - added Patch100 to avoid encoding detection failure
  81. * Fri Feb 12 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.2.3-1
  82. - konversation-1.2.3
  83. * Fri Feb 12 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.2.2-1
  84. - konversation-1.2.2
  85. * Wed Feb 03 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.2.1-3
  86. - test out qt46/cpu/fonts patch (kde#215256)
  87. * Thu Jan 28 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.2.1-2
  88. - use %%{_kde4_version}
  89. * Thu Nov 12 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2.1-1
  90. - konversation-1.2.1
  91. * Fri Oct 09 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-1
  92. - konversation-1.2 (final)
  93. * Sat Oct 03 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.12.rc1
  94. - konversation-1.2-rc1
  95. * Mon Sep 21 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.11.beta1
  96. - With auto-expand input box, ircview doesn't scroll (kdebug #208097)
  97. * Mon Sep 21 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.10.beta1
  98. - konversation-1.2-beta1
  99. * Sat Sep 19 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.9.20090919svn
  100. - localized snapshot
  101. * Sat Sep 19 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.8.20090919svn1025849
  102. - konversation-20090919svn1025849 snapshot, for marker line testing
  103. * Mon Aug 24 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.6.alpha6
  104. - BR: qca2-devel, libXScrnSaver-devel
  105. * Tue Aug 11 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.5.alpha6
  106. - add min kdelibs4 version
  107. * Sat Aug 08 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.4.alpha6
  108. - konversation-1.2-alpha6
  109. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-0.3.alpha4
  110. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  111. * Fri Jul 03 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.2.alpha4
  112. - konversation-1.2-alpha4
  113. * Wed Jun 03 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.1.alpha3
  114. - konversation-1.2-alpha3
  115. - optimize scriptlets
  116. * Mon Mar 02 2009 Dennis gilmore <dennis@ausil.us> - 1.1-6
  117. - make Patch and %%patch use the same number
  118. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-5
  119. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  120. * Sun Feb 22 2009 Dennis Gilmore <dennis@ausil.us> - 1.1-4
  121. - rebuild
  122. * Fri Feb 13 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.1-3
  123. - patch media script for amarok2 support
  124. * Wed Feb 04 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.1-2
  125. - s/for KDE//
  126. * Thu Aug 07 2008 Dennis Gilmore <dennis@ausil.us> - 1.1-1
  127. - update to 1.1 final
  128. * Tue Jul 15 2008 Dennis Gilmore <dennis@ausil.us> - 1.1-0.2.rc1
  129. - fix stupidity
  130. * Tue Jul 15 2008 Dennis Gilmore <dennis@ausil.us> - 1.1-0.1.rc1
  131. - update to 1.1 rc1
  132. * Wed Apr 09 2008 Dennis Gilmore <dennis@ausil.us> - 1.0.1-6
  133. - apply patch from upstream handling CVE-2007-4400 correctly
  134. - reenable media script
  135. * Mon Mar 10 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.1-5
  136. - drop Requires: kdebase3 (#435873)
  137. - f9+: dfi vendor fedora -> kde
  138. - %%doc ChangeLog COPYING README TODO
  139. * Thu Feb 07 2008 Dennis Gilmore <dennis@ausil.us> - 1.0.1-4
  140. - remove /usr/share/apps/konversation/scripts/media for CVE-2007-4400
  141. * Tue Aug 28 2007 Dennis Gilmore <dennis@ausil.us> - 1.0.1-3
  142. - clarify license GPLv2+, and rebuild for F8
  143. * Tue Oct 17 2006 Dennis Gilmore <dennis@ausil.us> - 1.0.1-2
  144. - add gettext as br so translations get built correctly
  145. * Fri Oct 06 2006 Dennis Gilmore <dennis@ausil.us> - 1.0.1-1
  146. - Upgrade to 1.0.1
  147. * Thu Sep 14 2006 Dennis Gilmore <dennis@ausil.us> - 1.0-1
  148. - Upgrade to 1.0 :)
  149. * Sat Sep 02 2006 Dennis Gilmore <dennis@ausil.us> - 0.19-3
  150. - rebuild for fc6
  151. * Tue Feb 14 2006 Dennis Gilmore <dennis@ausil.us> - 0.19-2
  152. - rebuild for fc5
  153. * Mon Jan 30 2006 Dennis Gilmore <dennis@ausil.us> - 0.19-1
  154. - update to 0.19
  155. * Thu Dec 22 2005 Dennis Gilmore <dennis@ausil.us> - 0.18-6
  156. - Rebuild for gcc 4.1
  157. * Sat Oct 20 2005 Dennis Gilmore <dennis@ausil.us> - 0.18-5
  158. - add BuildRequires desktop-file-utils http://fedoraproject.org/wiki/QAChecklist
  159. - add %%post and %%postun scriptlets to notify of new icons per
  160. - http://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html#implementation_notes
  161. * Sun Jul 03 2005 Dennis Gilmore <dennis@ausil.us> - 0.18-4
  162. - Explicly export QT lib and include dirs for x86_64 build issue
  163. * Tue Jun 28 2005 Dennis Gilmore <dennis@ausil.us> - 0.18-3
  164. - Destop-file-install, change gcc4 patch to configure
  165. remove unneeded build deps.
  166. * Mon Jun 27 2005 Dennis Gilmore <dennis@ausil.us> - 0.18-2
  167. - Fix build requires,set QT, %%lang'ify LOCALE bits and HTML docs
  168. move automake to prep
  169. * Sat Jun 25 2005 Dennis Gilmore <dennis@ausil.us> - 0.18-1
  170. - Initial build