konversation-vl.spec 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. Name: konversation
  2. Summary: A user friendly IRC client
  3. Summary(ja): 使い易い IRC クライアント
  4. Version: 1.4
  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.xz
  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. BuildRequires: soprano-devel
  22. %description
  23. A simple and easy to use IRC client with support for
  24. strikeout; multi-channel joins; away / unaway messages;
  25. ignore list functionality; support for foreign
  26. language characters; auto-connect to server; optional timestamps
  27. to chat windows; configurable background colors and much more
  28. %prep
  29. %setup -q -n %{name}-%{version}%{?pre:-%{pre}}
  30. %patch100 -p1 -b .jis7
  31. %build
  32. mkdir -p %{_target_platform}
  33. pushd %{_target_platform}
  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. * Mon Sep 03 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 1.4-1
  77. - update to 1.4
  78. * Sun May 15 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 1.3.1-2
  79. - add BuildRequires: soprano-devel
  80. * Sat Jan 15 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.3.1-1
  81. - new upstream release
  82. * Sun Mar 21 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.2.3-2
  83. - initial build for Vine Linux
  84. - added Patch100 to avoid encoding detection failure
  85. * Fri Feb 12 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.2.3-1
  86. - konversation-1.2.3
  87. * Fri Feb 12 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.2.2-1
  88. - konversation-1.2.2
  89. * Wed Feb 03 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.2.1-3
  90. - test out qt46/cpu/fonts patch (kde#215256)
  91. * Thu Jan 28 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.2.1-2
  92. - use %%{_kde4_version}
  93. * Thu Nov 12 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2.1-1
  94. - konversation-1.2.1
  95. * Fri Oct 09 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-1
  96. - konversation-1.2 (final)
  97. * Sat Oct 03 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.12.rc1
  98. - konversation-1.2-rc1
  99. * Mon Sep 21 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.11.beta1
  100. - With auto-expand input box, ircview doesn't scroll (kdebug #208097)
  101. * Mon Sep 21 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.10.beta1
  102. - konversation-1.2-beta1
  103. * Sat Sep 19 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.9.20090919svn
  104. - localized snapshot
  105. * Sat Sep 19 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.8.20090919svn1025849
  106. - konversation-20090919svn1025849 snapshot, for marker line testing
  107. * Mon Aug 24 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.6.alpha6
  108. - BR: qca2-devel, libXScrnSaver-devel
  109. * Tue Aug 11 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.5.alpha6
  110. - add min kdelibs4 version
  111. * Sat Aug 08 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.4.alpha6
  112. - konversation-1.2-alpha6
  113. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-0.3.alpha4
  114. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  115. * Fri Jul 03 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.2.alpha4
  116. - konversation-1.2-alpha4
  117. * Wed Jun 03 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.2-0.1.alpha3
  118. - konversation-1.2-alpha3
  119. - optimize scriptlets
  120. * Mon Mar 02 2009 Dennis gilmore <dennis@ausil.us> - 1.1-6
  121. - make Patch and %%patch use the same number
  122. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-5
  123. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  124. * Sun Feb 22 2009 Dennis Gilmore <dennis@ausil.us> - 1.1-4
  125. - rebuild
  126. * Fri Feb 13 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.1-3
  127. - patch media script for amarok2 support
  128. * Wed Feb 04 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.1-2
  129. - s/for KDE//
  130. * Thu Aug 07 2008 Dennis Gilmore <dennis@ausil.us> - 1.1-1
  131. - update to 1.1 final
  132. * Tue Jul 15 2008 Dennis Gilmore <dennis@ausil.us> - 1.1-0.2.rc1
  133. - fix stupidity
  134. * Tue Jul 15 2008 Dennis Gilmore <dennis@ausil.us> - 1.1-0.1.rc1
  135. - update to 1.1 rc1
  136. * Wed Apr 09 2008 Dennis Gilmore <dennis@ausil.us> - 1.0.1-6
  137. - apply patch from upstream handling CVE-2007-4400 correctly
  138. - reenable media script
  139. * Mon Mar 10 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.0.1-5
  140. - drop Requires: kdebase3 (#435873)
  141. - f9+: dfi vendor fedora -> kde
  142. - %%doc ChangeLog COPYING README TODO
  143. * Thu Feb 07 2008 Dennis Gilmore <dennis@ausil.us> - 1.0.1-4
  144. - remove /usr/share/apps/konversation/scripts/media for CVE-2007-4400
  145. * Tue Aug 28 2007 Dennis Gilmore <dennis@ausil.us> - 1.0.1-3
  146. - clarify license GPLv2+, and rebuild for F8
  147. * Tue Oct 17 2006 Dennis Gilmore <dennis@ausil.us> - 1.0.1-2
  148. - add gettext as br so translations get built correctly
  149. * Fri Oct 06 2006 Dennis Gilmore <dennis@ausil.us> - 1.0.1-1
  150. - Upgrade to 1.0.1
  151. * Thu Sep 14 2006 Dennis Gilmore <dennis@ausil.us> - 1.0-1
  152. - Upgrade to 1.0 :)
  153. * Sat Sep 02 2006 Dennis Gilmore <dennis@ausil.us> - 0.19-3
  154. - rebuild for fc6
  155. * Tue Feb 14 2006 Dennis Gilmore <dennis@ausil.us> - 0.19-2
  156. - rebuild for fc5
  157. * Mon Jan 30 2006 Dennis Gilmore <dennis@ausil.us> - 0.19-1
  158. - update to 0.19
  159. * Thu Dec 22 2005 Dennis Gilmore <dennis@ausil.us> - 0.18-6
  160. - Rebuild for gcc 4.1
  161. * Sat Oct 20 2005 Dennis Gilmore <dennis@ausil.us> - 0.18-5
  162. - add BuildRequires desktop-file-utils http://fedoraproject.org/wiki/QAChecklist
  163. - add %%post and %%postun scriptlets to notify of new icons per
  164. - http://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html#implementation_notes
  165. * Sun Jul 03 2005 Dennis Gilmore <dennis@ausil.us> - 0.18-4
  166. - Explicly export QT lib and include dirs for x86_64 build issue
  167. * Tue Jun 28 2005 Dennis Gilmore <dennis@ausil.us> - 0.18-3
  168. - Destop-file-install, change gcc4 patch to configure
  169. remove unneeded build deps.
  170. * Mon Jun 27 2005 Dennis Gilmore <dennis@ausil.us> - 0.18-2
  171. - Fix build requires,set QT, %%lang'ify LOCALE bits and HTML docs
  172. move automake to prep
  173. * Sat Jun 25 2005 Dennis Gilmore <dennis@ausil.us> - 0.18-1
  174. - Initial build