devhelp-vl.spec 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. Version: 3.4.0
  2. Release: 1%{?_dist_release}
  3. %define gtk_required 3.4.0
  4. Summary: API document browser
  5. Summary(ja): API ドキュメントブラウザ
  6. Name: devhelp
  7. License: GPL
  8. Group: Applications/Development
  9. Url: http://live.gnome.org/devhelp
  10. Source: http://ftp.gnome.org/pub/GNOME/sources/devhelp/3.4/%{name}-%{version}.tar.xz
  11. #Patch10: %{name}-0.19.1-xulrunner19.patch
  12. #Patch11: %{name}-webkit.patch
  13. #Patch: %{name}-r1265.patch
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  15. Vendor: Project Vine
  16. Distribution: Vine Linux
  17. Packager: yasumichi
  18. Requires(pre,preun,post): GConf2
  19. Requires(post,postun): gtk3 >= %{gtk_required}
  20. BuildRequires: gtk3-devel >= %{gtk_required}
  21. BuildRequires: GConf2-devel >= 2.6.0
  22. BuildRequires: WebKit3-gtk-devel
  23. %description
  24. An API document browser for GNOME 3.
  25. %description -l ja
  26. GNOME3 用の API ブラウザです。
  27. %package devel
  28. Summary: Library to embed Devhelp in other applications.
  29. Group: Development/Libraries
  30. Requires: %{name} = %{version}
  31. Requires: gtk3-devel >= %{gtk_required}
  32. Requires: GConf2-devel >= 2.6.0
  33. Requires: WebKit3-gtk-devel
  34. %description devel
  35. Library of Devhelp for embedding into other applications.
  36. %prep
  37. %setup -q
  38. #patch10 -p1 -b .xulrunner19
  39. #%patch -p1
  40. %build
  41. %configure --disable-static --disable-schemas-install
  42. make
  43. %install
  44. [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
  45. export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
  46. %makeinstall PREFIX=$RPM_BUILD_ROOT%{_prefix} install
  47. unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
  48. # remove, not shipped
  49. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  50. rm -rf $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/icon-theme.cache
  51. %find_lang %{name}
  52. %clean
  53. [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
  54. %post
  55. /sbin/ldconfig
  56. touch --no-create %{_datadir}/icons/hicolor
  57. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  58. gtk-update-icon-cache -q %{_datadir}/icons/hicolor
  59. fi
  60. %postun
  61. /sbin/ldconfig
  62. glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
  63. touch --no-create %{_datadir}/icons/hicolor
  64. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  65. gtk-update-icon-cache -q %{_datadir}/icons/hicolor
  66. fi
  67. %posttrans
  68. glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
  69. %files -f %{name}.lang
  70. %defattr(-, root, root)
  71. %doc AUTHORS COPYING ChangeLog NEWS README INSTALL
  72. %config %{_sysconfdir}/gconf/schemas/*.schemas
  73. %{_bindir}/devhelp
  74. %{_libdir}/lib*.so.*
  75. %{_datadir}/applications/devhelp.desktop
  76. %{_datadir}/devhelp
  77. %{_datadir}/icons/hicolor/*/apps/devhelp.png
  78. %{_libdir}/gedit/plugins/devhelp*
  79. %files devel
  80. %defattr(-,root,root)
  81. %{_includedir}/*
  82. %{_libdir}/libdevhelp*.so
  83. %{_libdir}/pkgconfig/*
  84. %changelog
  85. * Sun Apr 08 2012 TOYODA <bsyamato@sea.plala.or.jp> 3.4.0-1
  86. - new upstream release
  87. * Thu Sep 29 2011 TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
  88. - new upstream release
  89. * Mon Aug 15 2011 TOYODA <bsyamato@sea.plala.or.jp> 3.0.0-1
  90. - new upstream release
  91. * Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-1
  92. - new upstream release
  93. - remove %pre, %preun
  94. - fix %post, %postun
  95. - add %posttrans
  96. * Tue Sep 28 2010 Shu KONNO <owa@bg.wakwak.com> 2.30.1-2
  97. - rebuilt with rpm-4.8.1 for pkg-config
  98. * Sat Jun 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-1
  99. - new upstream release
  100. * Sun Apr 18 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
  101. - new upstream release
  102. * Fri Nov 06 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.28.1-2
  103. - add unique-devel to BR
  104. * Tue Nov 03 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.28.1-1
  105. - New upstream release.
  106. - remove Patch
  107. - build with WebKit-1.1.15.3
  108. - add Vendor, Distribution and Packager.
  109. * Mon Aug 10 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.23-4
  110. - update Patch(See follow url)
  111. - http://git.gnome.org/cgit/devhelp/commit/?id=af67fbedccab5044808a489a9f3a5540d42adcf2
  112. * Sat Aug 01 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.23-3
  113. - update Url.
  114. - add Patch11(http://bugzilla.gnome.org/show_bug.cgi?id=586559)
  115. * Tue Jun 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.23-2
  116. - remove unneeded Requires:
  117. - remove Requires/BuildRequires to gecko.
  118. * Tue Apr 28 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.23-1
  119. - new upstream release
  120. - added Requires: Webkit-gtk,libsoup BuildRequires: Webkit-gtk-devel,libsoup-devel
  121. * Tue Sep 30 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.21-1
  122. - new upstream release (dropped Patch10)
  123. - updated BuildRequires: gecko-devel-unstable instead of gecko-devel
  124. - added Requires: gecko-libs instead of firefox
  125. * Thu Jul 03 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.19.1-2
  126. - add Patch10 to build with xulrunner-1.9
  127. - add %%pre %%preun scripts to remove old gconf schemas
  128. - add %%postun to update icon cache
  129. - add unpackaged icons to %%files
  130. * Fri May 30 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.19.1
  131. - new upstream version.
  132. * Tue May 13 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.16.1-2
  133. - use macro for Release
  134. * Fri May 09 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org>
  135. - apply new virsioning policy.
  136. - remove *.la
  137. * Thu Jan 10 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.16.1-0vl2
  138. - rebuilt with libwnck 2.20.2
  139. * Fri Jan 04 2008 Shu KONNO <owa@bg.wakwak.com> 0.16.1-0vl1
  140. - new upstream version
  141. - removed icon-theme.cache in %%install section
  142. * Sun Sep 02 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.15-0vl1
  143. - new upstream release
  144. * Tue Apr 03 2007 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.13-0vl2
  145. - icon-theme.cache is not included.
  146. * Sun Apr 01 2007 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.13-0vl1
  147. - update to 0.13
  148. * Sun Dec 17 2006 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.12-0vl2
  149. - build devel package
  150. * Sun Oct 29 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.12-0vl1
  151. - updated to 0.12
  152. - using firefox(gecko) instead of gtkhtml2
  153. - disabled intltoolize before configure
  154. * Thu Aug 25 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.9.3-0vl2
  155. - add "--force" to intltoolize
  156. * Sun Nov 14 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.3-0vl1
  157. - build for Vine Linux
  158. - do not build devel package
  159. * Sun Jun 29 2003 Mikael Hallendal <micke@imendio.com>
  160. - Released 0.7