libzeitgeist-vl.spec 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. Name: libzeitgeist
  2. Summary: Client library for applications that want to interact with the Zeitgeist daemon
  3. Version: 0.3.18
  4. Release: 2%{?_dist_release}
  5. Group: System Environment/Libraries
  6. License: LGPLv3 and GPLv3
  7. URL: https://launchpad.net/libzeitgeist
  8. Source0: http://launchpad.net/%{name}/0.3/%{version}/+download/%{name}-%{version}.tar.gz
  9. Patch0: libzeitgeist-disable-log-test.patch
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: glib2-devel gtk-doc
  12. # zeitgeist is just a runtime and the reason to install libzeitgeist
  13. #Requires: zeitgeist
  14. Vendor: Project Vine
  15. Distribution: Vine Linux
  16. %description
  17. This project provides a client library for applications that want to interact
  18. with the Zeitgeist daemon. The library is written in C using glib and provides
  19. an asynchronous GObject oriented API.
  20. %package devel
  21. Summary: Development files for %{name}
  22. Group: Development/Libraries
  23. Requires: %{name} = %{version}-%{release}
  24. %description devel
  25. The %{name}-devel package contains libraries and header files for
  26. developing applications that use %{name}.
  27. %prep
  28. %setup -q
  29. %patch0 -p1
  30. %build
  31. %configure --disable-static
  32. make V=1 %{?_smp_mflags}
  33. %check
  34. make check
  35. %install
  36. make install DESTDIR=%{buildroot} INSTALL="install -p"
  37. install -d -p -m 755 %{buildroot}%{_datadir}/vala/vapi
  38. install -D -p -m 644 bindings/zeitgeist-1.0.{vapi,deps} %{buildroot}%{_datadir}/vala/vapi
  39. find %{buildroot} -name '*.la' -exec rm -f {} ';'
  40. # remove duplicate documentation
  41. rm -fr %{buildroot}%{_defaultdocdir}/%{name}
  42. %post -p /sbin/ldconfig
  43. %postun -p /sbin/ldconfig
  44. %files
  45. %defattr(-,root,root,-)
  46. # documentation
  47. %doc COPYING COPYING.GPL README
  48. # essential
  49. %{_libdir}/*.so.*
  50. %files devel
  51. %defattr(-,root,root,-)
  52. # Documentation
  53. %doc AUTHORS ChangeLog COPYING COPYING.GPL MAINTAINERS NEWS
  54. %doc examples/*.vala examples/*.c
  55. %{_datadir}/gtk-doc/html/zeitgeist-1.0/
  56. # essential
  57. %{_includedir}/zeitgeist-1.0/
  58. %{_libdir}/pkgconfig/zeitgeist-1.0.pc
  59. %{_libdir}/*.so
  60. # extra
  61. %{_datadir}/vala/vapi/
  62. %changelog
  63. * Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.3.18-2
  64. - rebuild with VineSeed environment
  65. * Sat Sep 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.3.18-1
  66. - new upstream release
  67. - replace Patch0 (libzeitgeist-disable-log-test.patch) from fedora
  68. * Sun Nov 20 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.3.12-1
  69. - Initial package for Vine Linux
  70. * Wed Apr 06 2011 Renich Bon ciric <renich@woralelandia.com> - 0.3.10-1
  71. - Updated to version 0.3.10
  72. - Fixed bugs:
  73. https://bugs.launchpad.net/ubuntu/+source/libzeitgeist/+bug/742438
  74. - Renamed log fix patch to something more appropriate
  75. * Sat Apr 02 2011 Renich Bon Ciric <renich@woralelandia.com> - 0.3.6-4
  76. - Added -p to install statements (forgot some)
  77. - Moved README to the main package from devel
  78. * Fri Mar 25 2011 Renich Bon Ciric <renich@woralelandia.com> - 0.3.6-3
  79. - Removed Rubys geo2 dependency since is not needed; it's provided by glibc-devel
  80. * Thu Mar 24 2011 Renich Bon Ciric <renich@woralelandia.com> - 0.3.6-2
  81. - Log test failure repaired by patch from Mamoru Tasaka
  82. * Mon Mar 21 2011 Renich Bon Ciric <renich@woralelandia.com> - 0.3.6-1
  83. - Updated to 0.3.6
  84. - Implemented the isa macro for the devel subpackage.
  85. - Eliminated the doc macro from gtk-doc since it gets marked automatically
  86. * Sat Mar 12 2011 Renich Bon Ciric <renich@woralelandia.com> - 0.3.4-3
  87. - Removed mistaken isa macro from zeitgeist require
  88. * Thu Mar 10 2011 Renich Bon Ciric <renich@woralelandia.com> - 0.3.4-2
  89. - Cleaned up old stuff (BuildRoot, Clean and stuff of sorts)
  90. https://fedoraproject.org/wiki/Packaging/Guidelines#BuildRoot_tag
  91. https://fedoraproject.org/wiki/Packaging/Guidelines#.25clean
  92. - Added glib2-devel and gtk-doc as a BuildRequires
  93. - Added GPLv3 since it covers the documentation examples
  94. - Updated Requires to use the new arch specification macro when accordingly
  95. https://fedoraproject.org/wiki/Packaging/Guidelines#Requires
  96. - Configured install to preserve timestamps
  97. - Added V=1 to the make flags for more verbosity on build
  98. - Added a check section
  99. - Removed disable-module from configure statement since it's not needed anymore:
  100. https://bugs.launchpad.net/libzeitgeist/+bug/683805
  101. * Thu Feb 24 2011 Renich Bon Ciric <renich@woralelandia.com> - 0.3.4-1
  102. - updated to latest version
  103. * Sun Feb 06 2011 Renich Bon Ciric <renich@woralelandia.com> - 0.3.2-3
  104. - got rid of INSTALL from docs
  105. - got rid ot dorcdir and used doc to include html docs
  106. * Sat Feb 05 2011 Renich Bon Ciric <renich@woralelandia.com> - 0.3.2-2
  107. - removed duplicate documentation
  108. - added the use of macros for everything; including source and build dir.
  109. - revised path syntax
  110. * Thu Jan 27 2011 - Renich Bon Ciric <renich@woralelandia.com> - 0.3.2-1
  111. - First buildName: libzeitgeist