startup-notification-vl.spec 3.2 KB

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