startup-notification-vl.spec 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. Summary: Library for tracking application startup
  2. Summary(ja): アプリケーションの起動を追跡するためのライブラリ
  3. Name: startup-notification
  4. Version: 0.9
  5. Release: 3%{?_dist_release}
  6. URL: http://www.freedesktop.org/software/startup-notification/
  7. Source0: %{name}-%{version}.tar.bz2
  8. License: LGPLv2
  9. Group: System Environment/Libraries
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: libX11-devel
  12. BuildRequires: libXt-devel
  13. %description
  14. This package contains libstartup-notification which implements a
  15. startup notification protocol. Using this protocol a desktop
  16. environment can track the launch of an application and provide
  17. feedback such as a busy cursor, among other features.
  18. %package devel
  19. Summary: Development portions of startup-notification
  20. Summary(ja): startup-notification の開発用ファイル
  21. Group: Development/Libraries
  22. Requires: startup-notification = %{version}
  23. Requires: libX11-devel
  24. Requires: pkgconfig
  25. %description devel
  26. Development files for libstartup-notification.
  27. %prep
  28. %setup -q
  29. %build
  30. %configure --disable-static
  31. make
  32. %install
  33. rm -rf $RPM_BUILD_ROOT
  34. %makeinstall
  35. /bin/rm -f $RPM_BUILD_ROOT%{_libdir}/*.{a,la}
  36. %clean
  37. rm -rf $RPM_BUILD_ROOT
  38. %post -p /sbin/ldconfig
  39. %postun -p /sbin/ldconfig
  40. %files
  41. %defattr(-,root,root)
  42. %doc AUTHORS COPYING ChangeLog
  43. %doc doc/startup-notification.txt
  44. %{_libdir}/lib*.so.*
  45. %files devel
  46. %defattr(-, root, root)
  47. %{_libdir}/lib*.so
  48. %{_libdir}/pkgconfig/*
  49. %{_includedir}/*
  50. %changelog
  51. * Fri Feb 26 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.9-3
  52. - rebuilt with new toolchain
  53. * Mon Apr 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9-2
  54. - spec in utf-8
  55. - remove static library
  56. - add BuildRequires: libX11-devel, libXt-devel instead of XOrg-devel
  57. * Mon May 12 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9-1
  58. - applied new versioning policy
  59. - moved %%configure from %%setup to %%build
  60. * Mon Apr 30 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9-0vl1
  61. - new upstream release
  62. * Tue Aug 22 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.8-0vl2
  63. - add BuildRequires: XOrg-devel
  64. * Fri Feb 25 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.8-0vl1
  65. - new upstream release
  66. * Mon Nov 08 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7-0vl1
  67. - new upstream release
  68. * Wed Jan 22 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5-0vl1
  69. - new upstream release
  70. * Sun Dec 15 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4-0vl1
  71. - build for Vine Linux
  72. * Mon Dec 2 2002 Havoc Pennington <hp@redhat.com>
  73. - Initial build.