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