gmime-vl.spec 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. Summary: Library for creating and parsing MIME messages
  2. Summary(ja): MIMEメッセージを生成またパースするためのライブラリ
  3. Name: gmime
  4. Version: 2.6.19
  5. Release: 2%{?_dist_release}
  6. Group: System Environment/Libraries
  7. License: GPL
  8. URL: http://spruce.sourceforge.net/gmime/
  9. Source0: http://ftp.gnome.org/pub/GNOME/sources/%{name}/2.6/%{name}-%{version}.tar.xz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  11. BuildRequires: glib2-devel >= 2.26.0
  12. BuildRequires: gpgme-devel
  13. BuildRequires: zlib-devel >= 1.2.1.1
  14. BuildRequires: automake, libtool, gettext, gtk-doc
  15. # Mono only availible on these:
  16. %define mono_archs %ix86 x86_64 ppc ia64 armv4l sparc
  17. # no mono on s390 for now: s390 s390x
  18. %ifarch %mono_archs
  19. BuildRequires: mono-devel gtk-sharp2-gapi
  20. BuildRequires: gtk-sharp2 >= 2.8.0
  21. %define monodir %{_prefix}/lib/mono
  22. %endif
  23. Vendor: Project Vine
  24. Distribution: Vine Linux
  25. Packager: Takemikaduchi
  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
  54. %build
  55. cp %{_datadir}/gettext/config.rpath .
  56. ## autoreconf --force --install
  57. %ifarch %mono_archs
  58. export MONO_SHARED_DIR=%{_builddir}/%{?buildsubdir}
  59. MONO_ARGS="--enable-mono"
  60. %endif
  61. %configure $MONO_ARGS
  62. make %{?_smp_mflags}
  63. %install
  64. rm -rf $RPM_BUILD_ROOT
  65. export MONO_SHARED_DIR=%{_builddir}/%{?buildsubdir}
  66. make install DESTDIR=$RPM_BUILD_ROOT
  67. find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
  68. # Don't conflict with sharutils:
  69. #mv $RPM_BUILD_ROOT%{_bindir}/uuencode $RPM_BUILD_ROOT%{_bindir}/gmime-uuencode
  70. #mv $RPM_BUILD_ROOT%{_bindir}/uudecode $RPM_BUILD_ROOT%{_bindir}/gmime-uudecode
  71. %clean
  72. rm -rf $RPM_BUILD_ROOT
  73. %post -p /sbin/ldconfig
  74. %postun -p /sbin/ldconfig
  75. %files
  76. %defattr(-,root,root,-)
  77. %doc AUTHORS COPYING ChangeLog README TODO
  78. #%{_bindir}/gmime-uu??code
  79. %{_libdir}/lib*.so.*
  80. %files devel
  81. %defattr(-,root,root,-)
  82. %{_libdir}/lib*.a
  83. %{_libdir}/lib*.so
  84. %{_libdir}/pkgconfig/gmime-2.6.pc
  85. %{_includedir}/gmime-2.6
  86. %{_datadir}/gtk-doc/html/gmime-2.6
  87. %ifarch %mono_archs
  88. %files sharp
  89. %defattr(-,root,root,-)
  90. %{_libdir}/pkgconfig/gmime-sharp-2.6.pc
  91. %{monodir}/gac/gmime-sharp
  92. %{monodir}/gmime-sharp-2.6
  93. %{_datadir}/gapi-2.0/gmime-api.xml
  94. %endif
  95. %changelog
  96. * Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.19-2
  97. - rebuild with VineSeed environment
  98. * Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.19-1
  99. - new upstream release
  100. * Sun Aug 11 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.17-1
  101. - new upstream release
  102. * Mon Jul 15 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.16-1
  103. - new upstream release
  104. * Sun Mar 03 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.15-1
  105. - new upstream release
  106. * Thu Jan 03 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.13-1
  107. - new upstream release
  108. * Sun Nov 04 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.12-1
  109. - new upstream release
  110. * Fri Oct 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.11-1
  111. - new upstream release
  112. * Thu Jun 21 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.10-1
  113. - new upstream release
  114. * Mon Apr 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.9-1
  115. - new upstream release
  116. * Sun Apr 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.7-1
  117. - new upstream release
  118. - remove Patch4
  119. * Wed Dec 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.2-1
  120. - new upstream release
  121. * Sun Nov 20 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.1-1
  122. - new upstream release
  123. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-1
  124. - new upstream release
  125. - add BuildRequires: gpgme-devel
  126. * Mon Aug 15 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.25-1
  127. - new upstream release
  128. * Thu May 05 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.24-1
  129. - new upstream release
  130. * Wed Jan 26 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.22-1
  131. - new upstream release
  132. * Tue Dec 21 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.21-1
  133. - new upstream release
  134. * Sat Nov 20 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.20-1
  135. - new upstream release
  136. * Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.19-1
  137. - new upstream release
  138. * Sat Sep 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.17-2
  139. - rebuild with rpm-4.8.1 for pkg-config file
  140. * Mon Jun 21 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.17-1
  141. - new upstream release
  142. * Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.15-1
  143. - new upstream release
  144. - fix files for gmime-2.4
  145. - drop Patch1, Patch2, Patch3
  146. * Thu Sep 18 2008 Shu KONNO <owa@bg.wakwak.com> 2.2.23-1vl5
  147. - new upstream release
  148. - rebuilt with mono-2.0
  149. - added gmime-2.2.23-gacutil.patch
  150. * Tue Aug 26 2008 Shu KONNO <owa@bg.wakwak.com> 2.2.9-1vl5
  151. - applied new versioning policy, spec in utf-8
  152. - updated gmime to 2.2.9
  153. - dropt gmime-2.2.3-libdir.patch
  154. - dropt gmime-2.2.3-automake.patch
  155. * Sun Apr 29 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.3-0vl1
  156. - initial build for Vine Linux
  157. * Tue Feb 6 2007 Alexander Larsson <alexl@redhat.com> - 2.2.3-5
  158. - Fix build with new automake (#224157)
  159. * Thu Oct 12 2006 Alexander Larsson <alexl@redhat.com> - 2.2.3-4
  160. - Bump glib requirement to 2.6 (#209565)
  161. * Tue Sep 5 2006 Alexander Larsson <alexl@redhat.com> - 2.2.3-3
  162. - fix gmime-config multilib conflict (#205208)
  163. * Sat Aug 19 2006 Matthias Clasen <mclasen@redhat.com> - 2.2.3-2
  164. - Rebuild
  165. * Fri Aug 18 2006 Alexander Larsson <alexl@redhat.com> - 2.2.3-1
  166. - Upgrade to 2.2.3
  167. - Use the new mono libdir
  168. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - sh: line 0: fg: no job control
  169. - rebuild
  170. * Fri Jun 9 2006 Alexander Larsson <alexl@redhat.com> - 2.2.1-2
  171. - Disable mono parts on s390* as mono doesn't build on s390 atm
  172. * Tue May 23 2006 Alexander Larsson <alexl@redhat.com> - 2.2.1-1
  173. - Update to 2.2.1
  174. - Fix multilib -devel conflict by using pkg-config in gmime-config (#192675)
  175. * Tue Feb 28 2006 Karsten Hopp <karsten@redhat.de> 2.1.19-4
  176. - BuildRequires: gtk-sharp2 on mono archs only
  177. * Sun Feb 12 2006 Christopher Aillon <caillon@redhat.com> - 2.1.19-3
  178. - Rebuild
  179. * Tue Feb 7 2006 Jesse Keating <jkeating@redhat.com> - 2.1.19-2.1
  180. - rebuilt for new gcc4.1 snapshot and glibc changes
  181. * Tue Jan 31 2006 Christopher Aillon <caillon@redhat.com> - 2.1.19-2
  182. - Rebuild
  183. * Sun Jan 22 2006 Alexander Larsson <alexl@redhat.com> - 2.1.19-1
  184. - Update to 2.1.19 (needed by beagle 0.2.0)
  185. * Thu Jan 19 2006 Alexander Larsson <alexl@redhat.com> 2.1.17-3
  186. - Build on s390x
  187. * Mon Jan 9 2006 Alexander Larsson <alexl@redhat.com> 2.1.17-2
  188. - build gmime-sharp conditionally on mono arches
  189. * Mon Jan 9 2006 Alexander Larsson <alexl@redhat.com> - 2.1.17-1
  190. - Move from Extras to Core, Update to 2.1.17, add gmime-sharp subpackage
  191. * Wed Aug 10 2005 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.1.15-1
  192. - Update to 2.1.15
  193. - Use dist
  194. * Wed May 18 2005 Colin Charles <colin@fedoraproject.org> - 2.1.9-5
  195. - bump release, request build on ppc
  196. * Thu Mar 31 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 2.1.9-4
  197. - add dep glib2-devel for pkgconfig in -devel package
  198. * Mon Oct 18 2004 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0:2.1.9-0.fdr.3
  199. - Remove ldconfig from Requires pre and post
  200. * Mon Oct 18 2004 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0:2.1.9-0.fdr.2
  201. - BR zlib-devel
  202. - Don't ship empty news file
  203. - Fixes to the files section
  204. - Change ldconfig in post* calls to -p /sbin/ldconfig
  205. * Sun Oct 17 2004 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0:2.1.9-0.fdr.1
  206. - Initial RPM release.