gobject-introspection-vl.spec 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
  2. %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
  3. Name: gobject-introspection
  4. Version: 0.6.9
  5. Release: 1%{?_dist_release}
  6. Summary: Introspection system for GObject-based libraries
  7. Group: Development/Libraries
  8. License: GPLv2+, LGPLv2+, MIT
  9. URL: http://live.gnome.org/GObjectIntrospection
  10. Source0: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/0.6/%{name}-%{version}.tar.bz2
  11. Patch0: gobject-introspection-0.6.7-ginfo-ppc.patch
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  13. BuildRequires: glib2-devel
  14. BuildRequires: python-devel >= 2.5
  15. BuildRequires: gettext
  16. BuildRequires: intltool
  17. BuildRequires: gtk-doc
  18. BuildRequires: flex
  19. BuildRequires: bison
  20. BuildRequires: libffi-devel
  21. BuildRequires: chrpath
  22. BuildRequires: mesa-libGL-devel
  23. BuildRequires: cairo-devel
  24. BuildRequires: libxml2-devel
  25. BuildRequires: libXfixes-devel
  26. BuildRequires: libX11-devel
  27. BuildRequires: fontconfig-devel
  28. BuildRequires: libXft-devel
  29. BuildRequires: freetype2-devel
  30. %description
  31. GObject Introspection can scan C header and source files in order to
  32. generate introspection "typelib" files. It also provides an API to examine
  33. typelib files, useful for creating language bindings among other
  34. things.
  35. %package devel
  36. Summary: Libraries and headers for gobject-introspection
  37. Summary(ja): %{name} の開発用ファイル
  38. Group: Development/Libraries
  39. Requires: %name = %{version}-%{release}
  40. Requires: glib2-devel
  41. Requires: libffi-devel
  42. Requires: pkgconfig
  43. %description devel
  44. Libraries and headers for gobject-introspection
  45. %prep
  46. %setup -q
  47. %ifarch ppc
  48. %patch0 -p1 -b .ppc
  49. %endif
  50. %build
  51. %configure
  52. make V=1
  53. %install
  54. rm -rf $RPM_BUILD_ROOT
  55. make install DESTDIR=$RPM_BUILD_ROOT
  56. # Die libtool, die.
  57. find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
  58. find $RPM_BUILD_ROOT -type f -name "*.a" -exec rm -f {} ';'
  59. chrpath --delete $RPM_BUILD_ROOT%{_bindir}/g-ir-{compiler,generate}
  60. # Mistake in upstream automake
  61. rm -f $RPM_BUILD_ROOT/%{_bindir}/barapp
  62. # Move the python modules to the correct location
  63. mkdir -p $RPM_BUILD_ROOT/%{python_sitearch}
  64. mv $RPM_BUILD_ROOT/%{_libdir}/gobject-introspection/giscanner $RPM_BUILD_ROOT/%{python_sitearch}/
  65. rm -f %{_datadir}/gobject-introspection-1.0/Makefile.introspection
  66. %clean
  67. rm -rf $RPM_BUILD_ROOT
  68. %post -p /sbin/ldconfig
  69. %postun -p /sbin/ldconfig
  70. %files
  71. %defattr(-,root,root,-)
  72. %doc COPYING
  73. %{_libdir}/lib*.so.*
  74. %dir %{_libdir}/girepository-1.0
  75. %{_libdir}/girepository-1.0/*.typelib
  76. %files devel
  77. %defattr(-,root,root)
  78. %{_libdir}/lib*.so
  79. %{_libdir}/pkgconfig/*
  80. %{_includedir}/*
  81. %{_bindir}/g-ir-*
  82. %{_datadir}/gir-1.0
  83. %{_datadir}/aclocal/introspection.m4
  84. %{python_sitearch}/giscanner
  85. %{_mandir}/man1/*.gz
  86. %changelog
  87. * Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.9-1
  88. - new upstream release
  89. - add Requires: libffi-devel (devel package)
  90. * Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.8-1
  91. - new upstream release
  92. * Sun Feb 28 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.7-1
  93. - new upstream release
  94. - add Patch0 for ppc
  95. * Wed Feb 03 2010 Shu KONNO <owa@bg.wakwak.com> 0.6.5-2
  96. - rebuilt with python-2.6.4
  97. * Sat Sep 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.6.5-1
  98. - initial build for Vine Linux
  99. * Fri Sep 11 2009 Colin Walters <walters@verbum.org> - 0.6.5-1
  100. - New upstream
  101. - Drop libtool dep
  102. * Fri Aug 28 2009 Colin Walters <walters@verbum.org> - 0.6.4-2
  103. - Add dep on libtool temporarily
  104. * Mon Aug 26 2009 Colin Walters <walters@verbum.org> - 0.6.4-1
  105. - New upstream 0.6.4
  106. - Drop upstreamed build fix patch
  107. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-5
  108. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  109. * Mon Jul 6 2009 Peter Robinson <pbrobinson@gmail.com> - 0.6.3-4
  110. - Add upstream patch to fix a build crash
  111. * Thu Jul 2 2009 Peter Robinson <pbrobinson@gmail.com> - 0.6.3-3
  112. - Add -ggdb temporarily so it compiles on ppc64
  113. * Thu Jul 2 2009 Peter Robinson <pbrobinson@gmail.com> - 0.6.3-2
  114. - Add the new source file
  115. * Thu Jul 2 2009 Peter Robinson <pbrobinson@gmail.com> - 0.6.3-1
  116. - Update to 0.6.3
  117. * Mon Jun 1 2009 Dan Williams <dcbw@redhat.com> - 0.6.2-1
  118. - Update to 0.6.2
  119. * Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1-2
  120. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  121. * Thu Dec 11 2008 Colin Walters <walters@verbum.org> - 0.6.1-1
  122. - Update to 0.6.1
  123. * Fri Oct 31 2008 Colin Walters <walters@verbum.org> - 0.6.0-1
  124. - Create spec goo