gmime22-vl.spec 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. Summary: Library for creating and parsing MIME messages
  2. Summary(ja): MIMEメッセージを生成またパースするためのライブラリ
  3. Name: gmime22
  4. Version: 2.2.26
  5. Release: 1%{?_dist_release}
  6. Group: System Environment/Libraries
  7. License: GPL
  8. URL: http://spruce.sourceforge.net/gmime/
  9. Source0: http://spruce.sourceforge.net/gmime/sources/v2.2/gmime-%{version}.tar.bz2
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  11. BuildRequires: glib2-devel >= 2.10.0
  12. BuildRequires: zlib-devel >= 1.2.1.1
  13. BuildRequires: automake, libtool, gettext, gtk-doc
  14. Patch1: gmime-2.2.3-use-pkg-config.patch
  15. Patch2: gmime-2.2.3-libdir.patch
  16. Patch3: gmime-2.2.3-automake.patch
  17. Patch4: gmime-2.2.23-gacutil.patch
  18. # Mono only availible on these:
  19. %define mono_archs %ix86 x86_64 ppc ia64 armv4l sparc
  20. # no mono on s390 for now: s390 s390x
  21. %ifarch %mono_archs
  22. BuildRequires: mono-devel gtk-sharp2-gapi
  23. BuildRequires: gtk-sharp2 >= 2.8.0
  24. %define monodir %{_prefix}/lib/mono
  25. %endif
  26. %description
  27. The GMime suite provides a core library and set of utilities which may be
  28. used for the creation and parsing of messages using the Multipurpose
  29. Internet Mail Extension (MIME).
  30. %package devel
  31. Summary: Header files to develop libgmime applications
  32. Group: Development/Libraries
  33. Requires: %{name} = %{version}-%{release}
  34. Requires: glib2-devel
  35. %description devel
  36. The GMime suite provides a core library and set of utilities which may be
  37. used for the creation and parsing of messages using the Multipurpose
  38. Internet Mail Extension (MIME). The devel-package contains header files
  39. to develop applications that use libgmime.
  40. %ifarch %mono_archs
  41. %package sharp
  42. Summary: mono bindings for gmime
  43. Group: Development/Libraries
  44. Requires: %{name} = %{version}-%{release}
  45. Requires: gtk-sharp2
  46. %description sharp
  47. The GMime suite provides a core library and set of utilities which may be
  48. used for the creation and parsing of messages using the Multipurpose
  49. Internet Mail Extension (MIME). The devel-package contains support
  50. for developing mono applications that use libgmime.
  51. %endif
  52. %prep
  53. %setup -q -n gmime-%{version}
  54. %patch1 -p1 -b .use-pkg-config
  55. #%patch2 -p1 -b .libdir
  56. #%patch3 -p0 -b .automake
  57. %ifarch %mono_archs
  58. %patch4 -p1 -b .gacutil
  59. %endif
  60. %build
  61. cp %{_datadir}/gettext/config.rpath .
  62. autoreconf --force --install
  63. %ifarch %mono_archs
  64. export MONO_SHARED_DIR=%{_builddir}/%{?buildsubdir}
  65. MONO_ARGS="--enable-mono"
  66. %endif
  67. %configure $MONO_ARGS
  68. make %{?_smp_mflags}
  69. %install
  70. rm -rf $RPM_BUILD_ROOT
  71. export MONO_SHARED_DIR=%{_builddir}/%{?buildsubdir}
  72. make install DESTDIR=$RPM_BUILD_ROOT
  73. find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
  74. # Don't conflict with sharutils:
  75. mv $RPM_BUILD_ROOT%{_bindir}/uuencode $RPM_BUILD_ROOT%{_bindir}/gmime-uuencode-2.2
  76. mv $RPM_BUILD_ROOT%{_bindir}/uudecode $RPM_BUILD_ROOT%{_bindir}/gmime-uudecode-2.2
  77. %clean
  78. rm -rf $RPM_BUILD_ROOT
  79. %post -p /sbin/ldconfig
  80. %postun -p /sbin/ldconfig
  81. %files
  82. %defattr(-,root,root,-)
  83. %doc AUTHORS COPYING ChangeLog README TODO
  84. %{_bindir}/gmime-uu??code-2.2
  85. %{_libdir}/lib*.so.*
  86. %files devel
  87. %defattr(-,root,root,-)
  88. %{_bindir}/gmime-config
  89. %{_libdir}/lib*.a
  90. %{_libdir}/lib*.so
  91. %{_libdir}/gmimeConf.sh
  92. %{_libdir}/pkgconfig/gmime-2.0.pc
  93. %{_includedir}/gmime-2.0
  94. %{_datadir}/gtk-doc/html/gmime
  95. %ifarch %mono_archs
  96. %files sharp
  97. %defattr(-,root,root,-)
  98. %{_libdir}/pkgconfig/gmime-sharp.pc
  99. %{monodir}/gac/gmime-sharp
  100. %{monodir}/gmime-sharp
  101. %{_datadir}/gapi-2.0/gmime-api.xml
  102. %endif
  103. %changelog
  104. * Sun Apr 11 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.26-1
  105. - new upstream release
  106. - change package name (gmime22)
  107. * Thu Sep 18 2008 Shu KONNO <owa@bg.wakwak.com> 2.2.23-1vl5
  108. - new upstream release
  109. - rebuilt with mono-2.0
  110. - added gmime-2.2.23-gacutil.patch
  111. * Tue Aug 26 2008 Shu KONNO <owa@bg.wakwak.com> 2.2.9-1vl5
  112. - applied new versioning policy, spec in utf-8
  113. - updated gmime to 2.2.9
  114. - dropt gmime-2.2.3-libdir.patch
  115. - dropt gmime-2.2.3-automake.patch
  116. * Sun Apr 29 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.3-0vl1
  117. - initial build for Vine Linux
  118. * Tue Feb 6 2007 Alexander Larsson <alexl@redhat.com> - 2.2.3-5
  119. - Fix build with new automake (#224157)
  120. * Thu Oct 12 2006 Alexander Larsson <alexl@redhat.com> - 2.2.3-4
  121. - Bump glib requirement to 2.6 (#209565)
  122. * Tue Sep 5 2006 Alexander Larsson <alexl@redhat.com> - 2.2.3-3
  123. - fix gmime-config multilib conflict (#205208)
  124. * Sat Aug 19 2006 Matthias Clasen <mclasen@redhat.com> - 2.2.3-2
  125. - Rebuild
  126. * Fri Aug 18 2006 Alexander Larsson <alexl@redhat.com> - 2.2.3-1
  127. - Upgrade to 2.2.3
  128. - Use the new mono libdir
  129. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - sh: line 0: fg: no job control
  130. - rebuild
  131. * Fri Jun 9 2006 Alexander Larsson <alexl@redhat.com> - 2.2.1-2
  132. - Disable mono parts on s390* as mono doesn't build on s390 atm
  133. * Tue May 23 2006 Alexander Larsson <alexl@redhat.com> - 2.2.1-1
  134. - Update to 2.2.1
  135. - Fix multilib -devel conflict by using pkg-config in gmime-config (#192675)
  136. * Tue Feb 28 2006 Karsten Hopp <karsten@redhat.de> 2.1.19-4
  137. - BuildRequires: gtk-sharp2 on mono archs only
  138. * Sun Feb 12 2006 Christopher Aillon <caillon@redhat.com> - 2.1.19-3
  139. - Rebuild
  140. * Tue Feb 7 2006 Jesse Keating <jkeating@redhat.com> - 2.1.19-2.1
  141. - rebuilt for new gcc4.1 snapshot and glibc changes
  142. * Tue Jan 31 2006 Christopher Aillon <caillon@redhat.com> - 2.1.19-2
  143. - Rebuild
  144. * Sun Jan 22 2006 Alexander Larsson <alexl@redhat.com> - 2.1.19-1
  145. - Update to 2.1.19 (needed by beagle 0.2.0)
  146. * Thu Jan 19 2006 Alexander Larsson <alexl@redhat.com> 2.1.17-3
  147. - Build on s390x
  148. * Mon Jan 9 2006 Alexander Larsson <alexl@redhat.com> 2.1.17-2
  149. - build gmime-sharp conditionally on mono arches
  150. * Mon Jan 9 2006 Alexander Larsson <alexl@redhat.com> - 2.1.17-1
  151. - Move from Extras to Core, Update to 2.1.17, add gmime-sharp subpackage
  152. * Wed Aug 10 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.1.15-1
  153. - Update to 2.1.15
  154. - Use dist
  155. * Wed May 18 2005 Colin Charles <colin@fedoraproject.org> - 2.1.9-5
  156. - bump release, request build on ppc
  157. * Thu Mar 31 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 2.1.9-4
  158. - add dep glib2-devel for pkgconfig in -devel package
  159. * Mon Oct 18 2004 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0:2.1.9-0.fdr.3
  160. - Remove ldconfig from Requires pre and post
  161. * Mon Oct 18 2004 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0:2.1.9-0.fdr.2
  162. - BR zlib-devel
  163. - Don't ship empty news file
  164. - Fixes to the files section
  165. - Change ldconfig in post* calls to -p /sbin/ldconfig
  166. * Sun Oct 17 2004 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0:2.1.9-0.fdr.1
  167. - Initial RPM release.