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