libical-vl.spec 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. Name: libical
  2. Summary: Reference implementation of the iCalendar data type and serialization format
  3. Summary(pl): Implementacja formatu iCalendar
  4. Version: 0.48
  5. Release: 1%{?_dist_release}
  6. Group: System Environment/Libraries
  7. License: LGPLv2 or MPLv1.1
  8. URL: http://freeassociation.sourceforge.net/
  9. Source0: http://downloads.sourceforge.net/freeassociation/%{name}-%{version}.tar.gz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: autoconf
  12. BuildRequires: automake
  13. BuildRequires: bison
  14. BuildRequires: byacc
  15. BuildRequires: flex
  16. BuildRequires: libtool
  17. Requires: tzdata
  18. Vendor: Project Vine
  19. Distribution: Vine Linux
  20. Packager: babasaki, daisuke
  21. #----------------------------------------------------------------------------
  22. %description
  23. Reference implementation of the iCalendar data type and serialization format
  24. used in dozens of calendaring and scheduling products.
  25. %description -l pl
  26. Implementacja formatu iCalendar, używana w wielu kalendarzach i
  27. planerach/planistach.
  28. #----------------------------------------------------------------------------
  29. %package devel
  30. Summary: Development files for libical
  31. Summary(pl): Pliki deweloperskie dla libical
  32. Group: Development/Libraries
  33. Requires: %{name} = %{version}-%{release}
  34. %description devel
  35. The libical-devel package contains libraries and header files for developing
  36. applications that use libical.
  37. %description devel -l pl
  38. libical-devel zawiera biblioteki i pliki niezbędne do tworzenia aplikacji
  39. korzystających z libical.
  40. #----------------------------------------------------------------------------
  41. %prep
  42. %setup -q
  43. %build
  44. %configure --disable-static --enable-cxx --enable-reentrant --with-backtrace
  45. make %{?_smp_mflags}
  46. %check
  47. # make check
  48. # Fails on x86_64 and ppc64.
  49. #----------------------------------------------------------------------------
  50. %install
  51. rm -rf $RPM_BUILD_ROOT
  52. make install INSTALL="%{__install} -p" DESTDIR=$RPM_BUILD_ROOT
  53. find $RPM_BUILD_ROOT -type f -name "*.la" -delete
  54. %clean
  55. rm -rf $RPM_BUILD_ROOT
  56. #----------------------------------------------------------------------------
  57. %post -p /sbin/ldconfig
  58. %postun -p /sbin/ldconfig
  59. %files
  60. %defattr(-,root,root,-)
  61. %doc AUTHORS ChangeLog COPYING LICENSE NEWS README THANKS TODO
  62. %{_libdir}/%{name}.so.*
  63. %{_libdir}/%{name}_cxx.so.*
  64. %{_libdir}/libicalss.so.*
  65. %{_libdir}/libicalss_cxx.so.*
  66. %{_libdir}/libicalvcal.so.*
  67. %files devel
  68. %defattr(-,root,root,-)
  69. %doc doc/UsingLibical.txt
  70. %{_includedir}/ical.h
  71. %{_libdir}/%{name}.so
  72. %{_libdir}/%{name}_cxx.so
  73. %{_libdir}/libicalss.so
  74. %{_libdir}/libicalss_cxx.so
  75. %{_libdir}/libicalvcal.so
  76. %{_libdir}/pkgconfig/libical.pc
  77. %dir %{_includedir}/%{name}
  78. %{_includedir}/%{name}/*.h
  79. %changelog
  80. * Sun Sep 02 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.48-1
  81. - update to 0.48
  82. - remove old patches
  83. * Sat Apr 2 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.46-1
  84. - new upstream release
  85. - added Patch0-2 from Fedora
  86. * Thu Sep 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.44-2
  87. - rebuild with rpm-4.8.1 for pkg-config file
  88. * Mon Jun 21 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.44-1
  89. - new upstream release
  90. - drop Patch0
  91. * Fri May 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.43-2
  92. - remove comment line after %%postun
  93. - add Vendor/Distribution/Packager tags
  94. * Sat Mar 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.43-1
  95. - new upstream release
  96. - add pkgconfig file to -devel subpackage.
  97. - move libicalvcal headers to /usr/include/libical (patch1,2)
  98. - add patch0 to fix implicit pointer conversion from Debian. Fixes Debian BTS
  99. bug #511598.
  100. * Mon Oct 27 2008 Seiichirou Babasaki - 0.32-2
  101. - Import libical - Packager: Babasaki
  102. - Updated specfile
  103. * Tue Sep 03 2008 Debarshi Ray <rishi@fedoraproject.org> - 0.32-1
  104. - Version bump to 0.32.
  105. - Parallel build problems fixed.
  106. * Sun Jul 27 2008 Jeff Perry <jeffperry_fedora@sourcesink.com> - 0.31-3
  107. - Added 'BuildRequires: bison byacc flex'.
  108. * Sun Jul 27 2008 Debarshi Ray <rishi@fedoraproject.org> - 0.31-2
  109. - Fixed linkage problems and disabled parallel build till upstream accepts fix.
  110. * Thu Jul 17 2008 Jeff Perry <jeffperry_fedora@sourcesink.com> - 0.31-1
  111. - Version bump to 0.31.
  112. * Thu Jul 17 2008 Debarshi Ray <rishi@fedoraproject.org> - 0.30-4
  113. - Changed value of License according to Fedora licensing guidelines.
  114. - Enabled reentrant system calls and C++ bindings.
  115. - Omitted unused direct shared library dependencies.
  116. - Added ChangeLog, COPYING, LICENSE, NEWS and README to doc and dropped
  117. examples.
  118. * Wed Apr 02 2008 Jakub 'Livio' Rusinek <jakub.rusinek@gmail.com> - 0.30-3
  119. - Source URL... Fixed
  120. * Wed Apr 02 2008 Jakub 'Livio' Rusinek <jakub.rusinek@gmail.com> - 0.30-2
  121. - Removed untrue note about libical's homepage (to get rid of eventuall mess)
  122. * Sat Feb 23 2008 David Nielsen <gnomeuser@gmail.com> - 0.30-1
  123. - Switch to freeassociation libical
  124. - bump to 0.30
  125. * Sat Feb 09 2008 Jakub 'Livio' Rusinek <jakub.rusinek@gmail.com> - 0.27-5
  126. - Mass rebuild for new GCC... Done
  127. * Sat Jan 19 2008 Jakub 'Livio' Rusinek <jakub.rusinek@gmail.com> - 0.27-4
  128. - Licence... Fixed
  129. * Fri Jan 18 2008 Jakub 'Livio' Rusinek <jakub.rusinek@gmail.com> - 0.27-3
  130. - Files section... Fixed
  131. * Thu Jan 17 2008 Jakub 'Livio' Rusinek <jakub.rusinek@gmail.com> - 0.27-2
  132. - Source... Changed
  133. - Debug information in libical main package... Excluded
  134. - Non-numbered .so files in libical main package... Moved
  135. - libical-devel documentation... Added
  136. * Mon Dec 24 2007 Jakub 'Livio' Rusinek <jakub.rusinek@gmail.com> - 0.27-1
  137. - Initial release