telepathy-logger-vl.spec 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. Name: telepathy-logger
  2. Version: 0.1.5
  3. Release: 1%{?_dist_release}
  4. Summary: Telepathy framework logging daemon
  5. Group: Applications/Communications
  6. License: LGPLv2+
  7. URL: http://telepathy.freedesktop.org/wiki/Logger
  8. Source0: http://telepathy.freedesktop.org/releases/%{name}/%{name}-%{version}.tar.bz2
  9. BuildRequires: dbus-devel >= 1.1.0
  10. BuildRequires: dbus-glib-devel >= 0.82
  11. BuildRequires: telepathy-glib-devel >= 0.11.7
  12. BuildRequires: glib2-devel >= 2.25.11
  13. BuildRequires: sqlite-devel
  14. BuildRequires: libxml2-devel
  15. BuildRequires: gnome-doc-utils
  16. BuildRequires: intltool
  17. BuildRequires: sqlite3-devel
  18. Requires: telepathy-filesystem
  19. %description
  20. %{name} is a headless Observer client that logs information
  21. received by the Telepathy framework. It features pluggable
  22. backends to log different sorts of messages, in different formats.
  23. %package devel
  24. Summary: Development files for %{name}
  25. Group: Development/Libraries
  26. Requires: %{name} = %{version}-%{release}
  27. Requires: pkgconfig
  28. %description devel
  29. The %{name}-devel package contains libraries and header files for
  30. developing applications that use %{name}.
  31. %prep
  32. %setup -q
  33. %build
  34. %configure --disable-static
  35. sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
  36. sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
  37. make %{?_smp_mflags}
  38. %install
  39. make install DESTDIR=$RPM_BUILD_ROOT
  40. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  41. %post -p /sbin/ldconfig
  42. %postun
  43. /sbin/ldconfig
  44. glib-compile-schemas --allow-any-name %{_datadir}/glib-2.0/schemas ||:
  45. %posttrans
  46. glib-compile-schemas --allow-any-name %{_datadir}/glib-2.0/schemas ||:
  47. %files
  48. %defattr(-,root,root,-)
  49. %doc COPYING NEWS README
  50. %{_libexecdir}/%{name}
  51. %{_libdir}/libtelepathy-logger*.so.*
  52. %{_datadir}/glib-2.0/schemas/org.freedesktop.Telepathy.Logger.gschema.xml
  53. %{_datadir}/telepathy/clients/Logger.client
  54. %{_datadir}/dbus-1/services/org.freedesktop.Telepathy.Client.Logger.service
  55. %{_datadir}/dbus-1/services/org.freedesktop.Telepathy.Logger.service
  56. %files devel
  57. %defattr(-,root,root,-)
  58. %doc %{_datadir}/gtk-doc/html/%{name}/
  59. %{_libdir}/libtelepathy-logger.so
  60. %{_libdir}/pkgconfig/%{name}*.pc
  61. %dir %{_includedir}/telepathy-logger-0.1
  62. %{_includedir}/telepathy-logger-0.1/%{name}/
  63. %changelog
  64. * Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.5-1
  65. - initial build for Vine Linux
  66. * Mon Aug 16 2010 Brian Pepple <bpepple@fedoraproject.org> - 0.1.5-1
  67. - Update to 0.1.5.
  68. - Modify spec for change from GConf to gsettings.
  69. - Add BR on intltool.
  70. * Fri Jul 9 2010 Brian Pepple <bpepple@fedoraproject.org> - 0.1.4-1
  71. - Update to 0.1.4.
  72. * Wed Jul 7 2010 Brian Pepple <bpepple@fedoraproject.org> - 0.1.3-2
  73. - Remove unnecessary buildroot info.
  74. - Remove rpath.
  75. * Mon Jun 28 2010 Brian Pepple <bpepple@fedoraproject.org> - 0.1.3-1
  76. - Initial Fedora spec file.