libgsf-vl.spec 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. Summary: GNOME Structured File library
  2. Summary(ja): GNOME 構造化ファイルライブラリ
  3. Name: libgsf
  4. Version: 1.14.25
  5. Release: 1%{?_dist_release}
  6. Group: System Environment/Libraries
  7. License: GPL
  8. Source: libgsf-%{version}.tar.xz
  9. URL: http://ftp.gnome.org/pub/gnome/sources/libgsf/
  10. Buildroot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: glib2-devel >= 2.26.0
  12. BuildRequires: libxml2-devel >= 2.4.16
  13. BuildRequires: gobject-introspection-devel
  14. BuildRequires: gdk-pixbuf2-devel
  15. BuildRequires: bzip2-devel
  16. BuildRequires: zlib-devel
  17. BuildRequires: python-devel
  18. BuildRequires: pygtk2-devel
  19. BuildRequires: pygobject-devel >= 2.24.4
  20. BuildRequires: popt-devel
  21. Vendor: Project Vine
  22. Distribution: Vine Linux
  23. %description
  24. A library for reading and writing structured files (eg MS OLE and Zip)
  25. %description -l ja
  26. 構造化ファイル (例:MS OLE や Zip) を読み書きするためのライブラリです.
  27. %package devel
  28. Summary: Support files necessary to compile applications with libgsf.
  29. Summary(ja): libgsf を使ったソフトのコンパイルに必要なファイル
  30. Group: Development/Libraries
  31. Requires: %{name} = %{version}-%{release}
  32. Requires: glib2-devel >= 2.26.0
  33. Requires: libxml2-devel >= 2.4.16
  34. %description devel
  35. Libraries, headers, and support files necessary to compile applications
  36. using libgsf.
  37. %description -l ja devel
  38. libgsf を使ったアプリケーションのコンパイルに必要なライブラリ,
  39. ヘッダファイルなどです.
  40. %prep
  41. %setup -q
  42. %build
  43. %configure \
  44. --disable-static \
  45. --enable-introspection \
  46. --disable-schemas-install \
  47. --with-python
  48. make
  49. %install
  50. if [ -d $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT; fi
  51. make install DESTDIR=$RPM_BUILD_ROOT
  52. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  53. rm -f $RPM_BUILD_ROOT%{python_sitearch}/gsf/*.la
  54. %find_lang %{name}
  55. %clean
  56. if [ -d $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT; fi
  57. %post -p /sbin/ldconfig
  58. %postun -p /sbin/ldconfig
  59. %files -f %{name}.lang
  60. %defattr(644,root,root,755)
  61. %doc AUTHORS COPYING COPYING.LIB ChangeLog README
  62. %attr(755, root, root) %{_bindir}/gsf
  63. %attr(755, root, root) %{_bindir}/gsf-office-thumbnailer
  64. %attr(755, root, root) %{_bindir}/gsf-vba-dump
  65. %{_libdir}/lib*.so.*
  66. %{_libdir}/girepository-1.0/Gsf-1.typelib
  67. %{python_sitelib}/gsf/*.py*
  68. %{python_sitearch}/gsf/_gsfmodule.so
  69. %{_datadir}/thumbnailers/gsf-office.thumbnailer
  70. %{_mandir}/man1/*
  71. %files devel
  72. %defattr(644,root,root,755)
  73. %{_libdir}/lib*.so
  74. %{_libdir}/pkgconfig/*.pc
  75. %{_includedir}/libgsf-1
  76. %{_datadir}/gir-1.0/Gsf-1.gir
  77. %{_datadir}/gtk-doc/html/gsf
  78. %changelog
  79. * Wed Nov 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.25-1
  80. - new upstream release
  81. * Sat Sep 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.24-1
  82. - new upstream release
  83. * Mon Apr 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.23-1
  84. - new upstream release
  85. - add BuildRequires: gobject-introspection-devel, gdk-pixbuf2-devel
  86. * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.22-2
  87. - rebuild with python-2.7.2
  88. * Wed Dec 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.22-1
  89. - new upstream release
  90. * Sun Aug 15 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.21-1
  91. - new upstream release
  92. * Thu May 05 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.20-1
  93. - new upstream release
  94. * Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.19-1
  95. - new upstream release
  96. * Wed Sep 22 2010 IWAI, Masaharu <iwai@alib.jp> 1.14.18-2
  97. - build with rpm-4.8.1-1 for pkg-config file
  98. * Thu Apr 29 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.18-1
  99. - new upstream release
  100. * Sun Feb 28 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.14.17-1
  101. - new upstream release
  102. - add BuildRequires: popt-devel
  103. * Wed Feb 03 2010 Shu KONNO <owa@bg.wakwak.com> 1.14.13-2
  104. - rebuilt with python-2.6.4
  105. * Mon May 11 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14.13-1
  106. - new upstream release
  107. - removed static libraries
  108. * Wed Apr 8 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14.11-1
  109. - new upstream release
  110. * Sat Oct 25 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14.10-1
  111. - new upstream release
  112. * Wed Sep 24 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14.9-1
  113. - new upstream release
  114. - added BuildRequires: pygtk2-devel, pygobject-devel
  115. * Sun Jul 21 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14.8-1
  116. - applied new versioning policy
  117. - rebuilt with python-2.5.2
  118. - spec in UTF-8
  119. * Sat Mar 8 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14.8-0vl1
  120. - new upstream release
  121. * Sat Sep 8 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14.7-0vl1
  122. - new upstream release
  123. * Sun Jul 22 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14.5-0vl1
  124. - new upstream release
  125. - removed GConf2 dependancy
  126. * Sun Jun 24 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14.4-0vl1
  127. - new upstream release
  128. * Wed Dec 6 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14.3-0vl1
  129. - new upstream release (includes security fix CVE-2006-4514)
  130. * Wed May 10 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14.1-0vl1
  131. - new upstream release
  132. * Sun Mar 7 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14.0-0vl1
  133. - new upstream release
  134. * Mon Nov 7 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.13.3-0vl1
  135. - new upstream release
  136. - updated Japanese summary and description
  137. - install schemas in %post section
  138. * Sat Jun 11 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.12.0-0vl1
  139. - new upstream release
  140. * Fri Nov 12 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.10.1-0vl1
  141. - new upstream release
  142. - added Japanese summary
  143. * Thu May 6 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.9.0-0vl1
  144. - new upstream release
  145. * Sun Sep 14 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8.2-0vl1
  146. - new upstream release
  147. - fixed URL
  148. * Mon Jun 30 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8.1-0vl1
  149. - rebuilt for Vine
  150. - updated to 1.8.1
  151. * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
  152. - rebuilt
  153. * Wed May 14 2003 Florian La Roche <Florian.LaRoche@redhat.de>
  154. - add proper ldconfig calls
  155. * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
  156. - rebuilt
  157. * Fri Jan 3 2003 Tim Powers <timp@redhat.com> 1.6.0-3
  158. - fix requires
  159. * Thu Jan 2 2003 Jonathan Blandford <jrb@redhat.com>
  160. - import into the build system
  161. * Tue Jun 18 2002 Rui M. Seabra <rms@407.org>
  162. - set permission correctly
  163. - fix common mistake of Copyright flag into License flag.
  164. * Thu May 23 2002 Jody Goldberg <jody@gnome.org>
  165. - Initial version