unique-vl.spec 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. Name: unique
  2. Version: 1.1.6
  3. Release: 1%{?_dist_release}
  4. Summary: Single instance support for applications
  5. Summary(ja): アプリケーションのシングルインスタンス支援
  6. Group: System Environment/Libraries
  7. License: LGPLv2+
  8. URL: http://www.gnome.org/~ebassi/source/
  9. Source0: http://www.gnome.org/~ebassi/source/libunique-%{version}.tar.bz2
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: dbus-glib-devel
  12. BuildRequires: gnome-doc-utils >= 0.3.2
  13. BuildRequires: libtool
  14. BuildRequires: glib2-devel >= 2.12.0
  15. BuildRequires: gtk2-devel >= 2.11.0
  16. %description
  17. Unique is a library for writing single instance applications, that is
  18. applications that are run once and every further call to the same binary
  19. either exits immediately or sends a command to the running instance.
  20. %package devel
  21. Summary: Libraries and headers for Unique
  22. Summary(ja): Unique のライブラリとヘッダ
  23. Group: Development/Libraries
  24. Requires: %{name} = %{version}-%{release}
  25. Requires: pkgconfig
  26. Requires: gtk-doc >= 1.11
  27. Requires: dbus-glib-devel
  28. Requires: gtk2-devel
  29. %description devel
  30. Headers and libraries for Unique.
  31. %prep
  32. %setup -q -n libunique-%{version}
  33. %build
  34. %configure --enable-gtk-doc --disable-static
  35. make %{?_smp_mflags}
  36. %install
  37. rm -rf $RPM_BUILD_ROOT
  38. make install DESTDIR=$RPM_BUILD_ROOT
  39. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  40. %clean
  41. rm -rf $RPM_BUILD_ROOT
  42. %post -p /sbin/ldconfig
  43. %postun -p /sbin/ldconfig
  44. %files
  45. %defattr(-,root,root,-)
  46. %doc AUTHORS ChangeLog COPYING README
  47. %{_libdir}/lib*.so.*
  48. %files devel
  49. %defattr(-,root,root,-)
  50. %doc %{_datadir}/gtk-doc/html/unique/
  51. %{_includedir}/unique-1.0/
  52. %{_libdir}/pkgconfig/*
  53. %{_libdir}/lib*.so
  54. %changelog
  55. * Sun Apr 04 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.6-1
  56. - new upstream release
  57. * Wed Jan 20 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.0.8-1
  58. - new upstream release
  59. - added Japanese description for unique
  60. - fixed Japanese description for unique-devel
  61. - fixed BuildRoot
  62. * Sun May 10 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-2
  63. - new upstream release
  64. * Sat Mar 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-1
  65. - initial build for Vine Linux
  66. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-4
  67. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  68. * Sat Dec 20 2008 Matthias Clasen <mclasen@redhat.com> - 1.0.4-3
  69. - Actually apply the patch
  70. * Sat Dec 20 2008 Matthias Clasen <mclasen@redhat.com> - 1.0.4-2
  71. - Fix a nautilus segfault
  72. * Mon Nov 24 2008 Richard Hughes <rhughes@redhat.com> - 1.0.4-1
  73. - Update to latest upstream version
  74. * Plug a leak in UniqueMessageData
  75. * Fix linking with --as-needed
  76. * Do not export private functions symbols
  77. * Sat Nov 22 2008 Richard Hughes <rhughes@redhat.com> - 1.0.0-2
  78. - Fix up summary text
  79. * Thu Jul 31 2008 Richard Hughes <rhughes@redhat.com> - 1.0.0-1
  80. - Update to latest upstream version
  81. * First stable release
  82. * API is frozen
  83. * D-Bus and socket backends supported
  84. * Fri May 16 2008 Richard Hughes <rhughes@redhat.com> - 0.9.4-5
  85. - More updates to the spec file from Dan Horak, rh#446407
  86. * Thu May 15 2008 Richard Hughes <rhughes@redhat.com> - 0.9.4-4
  87. - Updates to the spec file from Dan Horak, rh#446407
  88. * Thu May 08 2008 Richard Hughes <rhughes@redhat.com> - 0.9.4-3
  89. - Initial version