librsvg2-vl.spec 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. %define __libtoolize :
  2. %define libxml2_version 2.7.7
  3. %define gtk2_version 2.22.1
  4. %define gdk_pixbuf2 1.3.7
  5. %define gtk3_version 3.0.0
  6. %define freetype_version 2.4.2
  7. %define popt_version 1.14
  8. %define libart_version 2.3.21
  9. %define cairo_version 1.10.0
  10. %define libgnomeui_version 2.24.4
  11. %define gnome_vfs_version 2.24.4
  12. %define dbus_version 1.4.0
  13. %define dbus_glib_version 0.88
  14. %define avahi_glib_version 0.6.23
  15. %define libcroco_version 0.6.2
  16. %define libgsf_version 1.14.19
  17. Name: librsvg2
  18. Summary: An SVG library based on libart.
  19. Summary(ja): libart ベースの SVG ライブラリ
  20. Version: 2.34.1
  21. Release: 1%{?_dist_release}
  22. License: LGPL
  23. Group: System Environment/Libraries
  24. Source: librsvg-%{version}.tar.xz
  25. Requires(post,postun): gtk2 >= %{gtk2_version}
  26. Requires(post): dbus-glib >= %{dbus_glib_version}
  27. Requires(post): avahi-glib >= %{avahi_glib_devel}
  28. Requires(post): libgsf, libcroco
  29. Requires: gtk2 >= %{gtk2_version}
  30. Requires: gtk3 >= %{gtk3_version}
  31. Requires: libxml2 >= %{libxml2_version}
  32. Requires: popt >= %{popt_version}
  33. Requires: freetype2 >= %{freetype_version}
  34. Requires: libpng
  35. BuildRequires: libpng-devel
  36. BuildRequires: gtk2-devel >= %{gtk2_version}
  37. BuildRequires: gtk3-devel >= %{gtk3_version}
  38. BuildRequires: libxml2-devel >= %{libxml2_version}
  39. BuildRequires: freetype2-devel >= %{freetype_version}
  40. BuildRequires: cairo-devel >= %{cairo_version}
  41. BuildRequires: dbus-glib-devel >= %{dbus_glib_devel}
  42. BuildRequires: avahi-glib-devel >= %{avahi_glib_devel}
  43. BuildRequires: libcroco-devel >= %{libcroco_version}
  44. BuildRequires: libgsf-devel >= %{libgsf_version}
  45. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  46. Vendor: Project Vine
  47. Distribution: Vine Linux
  48. %description
  49. An SVG library based on libart.
  50. %description -l ja
  51. libart ベースの SVG ライブラリです
  52. %package devel
  53. Summary: Libraries and include files for developing with librsvg.
  54. Summary(ja): librsvg の開発用ライブラリおよびヘッダファイル
  55. Group: Development/Libraries
  56. Requires: %{name} = %{version}
  57. Requires: gdk-pixbuf2-devel >= %{gdk_pixbug2_version}
  58. Requires: cairo-devel >= %{cairo_version}
  59. %description devel
  60. This package provides the necessary development libraries and include
  61. files to allow you to develop with librsvg.
  62. %prep
  63. %setup -q -n librsvg-%{version}
  64. %build
  65. %configure --disable-gtk-doc \
  66. --with-svgz \
  67. --enable-gtk-theme \
  68. --with-croco \
  69. --disable-static
  70. %__make %{?_smp_mflags}
  71. %install
  72. rm -rf $RPM_BUILD_ROOT
  73. make install DESTDIR=$RPM_BUILD_ROOT
  74. rm -f $RPM_BUILD_ROOT%{_libdir}/*.{a,la}
  75. rm -f $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/*/engines/libsvg.*a
  76. rm -f $RPM_BUILD_ROOT%{_libdir}/gdk-pixbuf-2.0/*/loaders/libpixbuf*.*a
  77. rm -f $RPM_BUILD_ROOT%{_sysconfdir}/gtk-2.0/gdk-pixbuf.loaders
  78. %clean
  79. rm -rf $RPM_BUILD_ROOT
  80. %post
  81. /sbin/ldconfig
  82. if [ -x /usr/bin/gdk-pixbuf-query-loaders ]; then
  83. /usr/bin/gdk-pixbuf-query-loaders --update-cache || :
  84. fi ||:
  85. %postun
  86. /sbin/ldconfig
  87. if [ -x /usr/bin/gdk-pixbuf-query-loaders ]; then
  88. /usr/bin/gdk-pixbuf-query-loaders --update-cache || :
  89. fi ||:
  90. %files
  91. %defattr(-, root, root)
  92. %doc AUTHORS COPYING COPYING.LIB ChangeLog NEWS README
  93. %{_bindir}/*
  94. %{_libdir}/*.so.*
  95. %{_libdir}/gtk-2.0/*/engines/*.so
  96. %{_libdir}/gdk-pixbuf-2.0/*/loaders/*.so
  97. %{_mandir}/man1/*
  98. %{_datadir}/pixmaps/*
  99. %{_datadir}/themes/bubble/gtk-2.0/*
  100. %{_datadir}/themes/bubble/gtk-3.0/*
  101. %files devel
  102. %defattr(-, root, root)
  103. %{_libdir}/*.so
  104. %{_includedir}/librsvg-2.0/librsvg
  105. %{_libdir}/pkgconfig/librsvg-2.0.pc
  106. %{_datadir}/gtk-doc/html/rsvg-2.0
  107. %changelog
  108. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.34.1-1
  109. - new upstream release
  110. - remove Patch0
  111. * Mon Aug 15 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.34.0-1
  112. - new upstream release
  113. - add Patch0 (librsvg2-2.34.0-git20110728.patch)
  114. * Sat Nov 20 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.1-1
  115. - new upstream release
  116. * Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-1
  117. - new upstream release
  118. - remove BuildRequires: popt, libart_lgpl, libgnomeui-devel, gnome-vfs2-devel
  119. - remove Requires: libart_lgpl
  120. - add configure option (--disable-static)
  121. - remove unrecognized configure option (--enable-gnome-vfs, --disable-mozilla-plugins)
  122. - fix %install, %files, %post and %postun
  123. * Wed Sep 22 2010 IWAI, Masaharu <iwai@alib.jp> 2.26.3-1
  124. - build with rpm-4.8.1-1 for pkg-config file
  125. * Sun May 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.26.3-1
  126. - new upstream release
  127. * Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-1
  128. - new upstream release
  129. - remove static libs
  130. * Sun Oct 26 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.3-1vl5
  131. - new upstream release
  132. - spec in UTF-8
  133. * Wed Mar 26 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.2-1vl5
  134. - new upstream release
  135. * Sat Mar 8 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.18.2-0vl2
  136. - rebuilt with libgsf-1.14.8
  137. * Sat Sep 8 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.18.2-0vl1
  138. - new upstream release
  139. * Sun May 20 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.16.1-0vl1
  140. - new upstream release
  141. - add BuildRequires: dbus-glib-devel, avahi-glib-devel
  142. - add BuildRequires: libgsf-devel, libcroco-devel
  143. - add Requires(post): dbus-glib, avahi-glib, libgsf, libcroco
  144. - add Requires(post,postun): glib2
  145. * Tue Apr 24 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.4-0vl5
  146. - rebuild with gtk+-2.10
  147. * Thu Aug 31 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.14.4-0vl4
  148. - rebuilt without libgsf-devel
  149. * Tue Jun 20 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.4-0vl3
  150. - update %%post scripts to use %%{_sysconfdir}/gtk-2.0/%%{_arch}/gd-pixbuf.loaders
  151. for biarch support. (TODO: add compat32)
  152. * Sat Jun 17 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.14.4-0vl2
  153. - rebuild
  154. * Mon May 29 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.4-0vl1
  155. - new upstream release
  156. * Tue Mar 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.2-0vl1
  157. - new upstream release
  158. * Tue Mar 07 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.1-0vl1
  159. - new upstream release
  160. * Wed Oct 12 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.7-0vl1
  161. - new upstream release
  162. - added --disable-gtk-doc option
  163. * Sat Oct 8 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.6-0vl1
  164. - new upstream release
  165. - added gtk-doc to devel package
  166. * Sun Oct 2 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.3-0vl1
  167. - new upstream release
  168. - added Japanese description
  169. - added --without-svgz option (because it requires libgsf)
  170. * Mon Sep 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.0-0vl1
  171. - new upstream release
  172. * Sun Nov 07 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.1-0vl1
  173. - new upstream release
  174. * Fri Jun 18 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.4.0-0vl4
  175. - rebuilt to avoid unwanted dependency (libgsf)
  176. * Fri Mar 19 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-0vl3
  177. - add gdk-pixbuf-query-loaders to post/postun script.
  178. * Fri Mar 19 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-0vl2
  179. - rebuild with gtk+-2.4.0
  180. * Wed Sep 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-0vl1
  181. - new upstream release
  182. * Fri Sep 05 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.1-0vl2
  183. - fix kanji code of spec file
  184. - fix file entry, add missing files
  185. * Wed Sep 03 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.1-0vl1
  186. - new upstream release
  187. * Sat Jul 12 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.5-0vl2
  188. - added --without-svgz and --without-gimp to %configure
  189. * Thu Jul 10 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.5-0vl1
  190. - new upstream release
  191. - added %{_bindir}/rsvg and %{_mandir}/man1/* to main package
  192. - added %{_libdir}/gtk-2.0/* to devel package
  193. * Tue Jan 21 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0-0vl1
  194. - new upstream release
  195. * Thu Jan 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl1
  196. - new upstream release
  197. * Fri Jan 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.3-0vl1
  198. - new upstream release
  199. * Sun Dec 15 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.2-0vl1
  200. - build for Vine Linux
  201. - new upstream release from gnome-2.1.4
  202. * Sat Jul 27 2002 Havoc Pennington <hp@redhat.com>
  203. - 2.0.1
  204. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  205. - automated rebuild
  206. * Sun May 26 2002 Tim Powers <timp@redhat.com>
  207. - automated rebuild
  208. * Tue May 21 2002 Havoc Pennington <hp@redhat.com>
  209. - rebuild in different environment
  210. * Thu May 02 2002 Havoc Pennington <hp@redhat.com>
  211. - rebuild in different environment
  212. * Thu Apr 18 2002 Havoc Pennington <hp@redhat.com>
  213. - 1.1.6
  214. * Mon Feb 11 2002 Alex Larsson <alexl@redhat.com> 1.1.3-1
  215. - Update to 1.1.3
  216. * Wed Jan 09 2002 Tim Powers <timp@redhat.com>
  217. - automated rebuild
  218. * Wed Jan 2 2002 Havoc Pennington <hp@redhat.com>
  219. - new CVS snap 1.1.0.91
  220. - remove automake/autoconf calls
  221. * Mon Nov 26 2001 Havoc Pennington <hp@redhat.com>
  222. - convert to librsvg2 RPM
  223. * Tue Oct 23 2001 Havoc Pennington <hp@redhat.com>
  224. - 1.0.2
  225. * Fri Jul 27 2001 Alexander Larsson <alexl@redhat.com>
  226. - Add a patch that moves the includes to librsvg-1/librsvg
  227. - in preparation for a later librsvg 2 library.
  228. * Tue Jul 24 2001 Havoc Pennington <hp@redhat.com>
  229. - build requires gnome-libs-devel, #49509
  230. * Thu Jul 19 2001 Havoc Pennington <hp@redhat.com>
  231. - own /usr/include/librsvg
  232. * Wed Jul 18 2001 Akira TAGOH <tagoh@redhat.com> 1.0.0-4
  233. - fixed the linefeed problem in multibyte environment. (Bug#49310)
  234. * Mon Jul 09 2001 Havoc Pennington <hp@redhat.com>
  235. - put .la file back in package
  236. * Fri Jul 6 2001 Trond Eivind Glomsr藷?<teg@redhat.com>
  237. - Put changelog at the end
  238. - Move .so files to devel subpackage
  239. - Don't mess with ld.so.conf
  240. - Don't use %%{prefix}, this isn't a relocatable package
  241. - Don't define a bad docdir
  242. - Add BuildRequires
  243. - Use %%{_tmppath}
  244. - Don't define name, version etc. on top of the file (why do so many do that?)
  245. - s/Copyright/License/
  246. * Wed May 9 2001 Jonathan Blandford <jrb@redhat.com>
  247. - Put into Red Hat Build system
  248. * Tue Oct 10 2000 Robin Slomkowski <rslomkow@eazel.com>
  249. - removed obsoletes from sub packages and added mozilla and trilobite
  250. subpackages
  251. * Wed Apr 26 2000 Ramiro Estrugo <ramiro@eazel.com>
  252. - created this thing