annotate libpst.spec.in @ 75:987aa872294e stable-0-6-11

Use ftello/fseeko to properly handle large files. Document and properly use datasize field in b5 blocks. Fix some MSVC compile issues and collect MSVC dependencies into one place.
author Carl Byington <carl@five-ten-sg.com>
date Tue, 03 Jun 2008 12:00:58 -0700
parents 3cb02cb1e6cd
children 535075b4d261
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
1 Summary: Utilities to convert Outlook .pst files to other formats
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2 Name: @PACKAGE@
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3 Version: @VERSION@
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
4 Release: 1%{?dist}
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
5 License: GPLv2+
51
06c0262ad689 code cleanup
carl
parents: 31
diff changeset
6 Group: Applications/Productivity
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
7 Source: http://www.five-ten-sg.com/%{name}/packages/%{name}-%{version}.tar.gz
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
8 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
9 URL: http://www.five-ten-sg.com/%{name}/
66
32f771bc9c1c remove redundant requires from the spec file
Carl Byington <carl@five-ten-sg.com>
parents: 65
diff changeset
10 Requires: ImageMagick
65
800c6fde1cf6 build requires ImageMagick to see convert needed by pst2dii
Carl Byington <carl@five-ten-sg.com>
parents: 64
diff changeset
11 BuildRequires: ImageMagick freetype-devel gd-devel libjpeg-devel zlib-devel
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
12
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
13
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
14 %description
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
15 The Libpst utilities include readpst which can convert email messages
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
16 to both mbox and MH mailbox formats, pst2ldif which can convert the
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
17 contacts to .ldif format for import into ldap databases, and pst2dii
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
18 which can convert email messages to the DII load file format used by
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
19 Summation.
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
20
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
21
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
22 %prep
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
23 %setup -q
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
24
67
90aa7814ad1f Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents: 66
diff changeset
25
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
26 %build
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
27 %configure
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
28 make %{?_smp_mflags}
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
29
67
90aa7814ad1f Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents: 66
diff changeset
30
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
31 %install
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
32 rm -rf $RPM_BUILD_ROOT
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
33 make DESTDIR=$RPM_BUILD_ROOT install
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
34
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
35
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
36 %clean
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
37 rm -rf $RPM_BUILD_ROOT
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
38
67
90aa7814ad1f Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents: 66
diff changeset
39
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
40 %files
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
41 %defattr(-,root,root,-)
24
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
42 %{_bindir}/*
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
43 %{_mandir}/man1/*
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
44 %{_mandir}/man5/*
67
90aa7814ad1f Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents: 66
diff changeset
45 %docdir %{_datadir}/doc/%{name}-%{version}
90aa7814ad1f Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents: 66
diff changeset
46 %{_datadir}/doc/%{name}-%{version}
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
47
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
48
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
49 %changelog
75
987aa872294e Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents: 73
diff changeset
50 * Tue Jun 03 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.11-1
987aa872294e Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents: 73
diff changeset
51 - Use ftello/fseeko to properly handle large files.
987aa872294e Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents: 73
diff changeset
52 - Document and properly use datasize field in b5 blocks.
987aa872294e Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents: 73
diff changeset
53 - Fix some MSVC compile issues and collect MSVC dependencies into one place.
987aa872294e Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents: 73
diff changeset
54
73
3cb02cb1e6cd Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents: 71
diff changeset
55 * Thu May 29 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.10-1
3cb02cb1e6cd Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents: 71
diff changeset
56 - Patch from Robert Simpson for doubly-linked list code and arrays of unicode strings.
3cb02cb1e6cd Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents: 71
diff changeset
57
71
1bd4491cf8ff fix documentation of 8 byte backpointers
Carl Byington <carl@five-ten-sg.com>
parents: 70
diff changeset
58 * Fri May 16 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.9
73
3cb02cb1e6cd Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents: 71
diff changeset
59 - Patch from Joachim Metz for 64 bit compile.
71
1bd4491cf8ff fix documentation of 8 byte backpointers
Carl Byington <carl@five-ten-sg.com>
parents: 70
diff changeset
60 - Fix pst format documentation for 8 byte backpointers.
70
b12f4e50e2e8 Patch from Joachim Metz <joachim.metz@gmail.com> for 64 bit compile.
Carl Byington <carl@five-ten-sg.com>
parents: 67
diff changeset
61
67
90aa7814ad1f Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents: 66
diff changeset
62 * Wed Mar 05 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.8
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
63 - Initial version of pst2dii to convert to Summation dii load file format
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
64 - changes for Fedora packaging guidelines (#434727)
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
65
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
66 * Tue Jul 10 2007 Carl Byington <carl@five-ten-sg.com> - 0.5.5
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 24
diff changeset
67 - merge changes from Joe Nahmias version
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 24
diff changeset
68
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
69 * Sun Feb 19 2006 Carl Byington <carl@five-ten-sg.com> - 0.5.3
24
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
70 - initial spec file using autoconf and http://www.fedora.us/docs/rpm-packaging-guidelines.html
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
71