libevent-vl.spec 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. Summary: Abstract asynchronous event notification library
  2. Summary(ja): 非同期イベント通知ライブラリ
  3. Name: libevent
  4. Version: 2.0.10
  5. Release: 2%{?_dist_release}
  6. Group: System Environment/Libraries
  7. License: BSD
  8. URL: http://monkey.org/~provos/libevent/
  9. Source0: http://monkey.org/~provos/libevent-%{version}-stable.tar.gz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: openssl-devel
  12. %description
  13. The libevent API provides a mechanism to execute a callback function
  14. when a specific event occurs on a file descriptor or after a timeout
  15. has been reached. libevent is meant to replace the asynchronous event
  16. loop found in event driven network servers. An application just needs
  17. to call event_dispatch() and can then add or remove events dynamically
  18. without having to change the event loop.
  19. %package devel
  20. Summary: Header files, libraries and development documentation for %{name}
  21. Group: Development/Libraries
  22. Requires: %{name} = %{version}-%{release}
  23. %description devel
  24. This package contains the header files, static libraries and development
  25. documentation for %{name}. If you like to develop programs using %{name},
  26. you will need to install %{name}-devel.
  27. %prep
  28. %setup -q -n %{name}-%{version}-stable
  29. %build
  30. %configure \
  31. --disable-static \
  32. --disable-dependency-tracking
  33. %__make %{?_smp_mflags}
  34. %install
  35. rm -rf $RPM_BUILD_ROOT
  36. %__make DESTDIR=$RPM_BUILD_ROOT install
  37. 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,0755)
  44. %doc README
  45. %{_bindir}/*
  46. %{_libdir}/lib*.so.*
  47. %files devel
  48. %defattr(-,root,root,0755)
  49. %doc sample/*.c
  50. %{_includedir}/*
  51. %{_libdir}/lib*.so
  52. %{_libdir}/pkgconfig/%{name}*.pc
  53. #%{_mandir}/man3/*
  54. %changelog
  55. * Sun Feb 13 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.0.10-2
  56. - add BuildRequires: openssl-devel
  57. * Thu Feb 10 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.0.10-1
  58. - new upstream release
  59. * Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.4.13-2
  60. - rebuilt with gcc-4.4.3-3 on ppc
  61. * Mon Feb 1 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.13-1
  62. - new upstream release
  63. - built with new toolchains
  64. * Tue Mar 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.3-2
  65. - spec in utf-8
  66. - remove static libs
  67. * Wed Apr 23 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.3-1
  68. - new upstream release
  69. * Sun Jul 8 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.3b-0vl1
  70. - new upstream release
  71. * Sun Aug 13 2006 IWAI, Masaharu <iwai@alib.jp> 1.1b-0vl1
  72. - new upstream release
  73. * Sun Mar 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1a-0vl1
  74. - initial build for Vine Linux
  75. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.1a-3.2
  76. - bump again for double-long bug on ppc(64)
  77. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.1a-3.1
  78. - rebuilt for new gcc4.1 snapshot and glibc changes
  79. * Tue Jan 24 2006 Warren Togami <wtogami@redhat.com> - 1.1a-3
  80. - rebuild (#177697)
  81. * Mon Jul 04 2005 Ralf Ertzinger <ralf@skytale.net> - 1.1a-2
  82. - Removed unnecessary -r from rm
  83. * Fri Jun 17 2005 Ralf Ertzinger <ralf@skytale.net> - 1.1a-1
  84. - Upstream update
  85. * Wed Jun 08 2005 Ralf Ertzinger <ralf@skytale.net> - 1.1-2
  86. - Added some docs
  87. - Moved "make verify" into %%check
  88. * Mon Jun 06 2005 Ralf Ertzinger <ralf@skytale.net> - 1.1-1
  89. - Initial build for Fedora Extras, based on the package
  90. by Dag Wieers