forked from mguessan/davmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
davmail.spec
279 lines (234 loc) · 9.09 KB
/
davmail.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
%{?!davrel: %define davrel 5.5.1}
%{?!davsvn: %define davsvn 3300}
%define davver %{davrel}-%{davsvn}
Summary: DavMail is a POP/IMAP/SMTP/Caldav/Carddav/LDAP gateway for Microsoft Exchange
Name: davmail
URL: http://davmail.sourceforge.net
Version: %{davrel}
Release: 1%{?dist}
License: GPL-2.0+
Group: Applications/Internet
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
BuildRequires: ant >= 1.7.1, desktop-file-utils
%{?fedora:BuildRequires: lua}
%{?fedora:BuildRequires: systemd}
%{?el6:BuildRequires: ant-apache-regexp}
%if 0%{?fedora} == 18
# missing ant dep on original Fedora 18
BuildRequires: xml-commons-apis
%endif
%if 0%{?is_opensuse}
BuildRequires: insserv-compat
%endif
# force Java 7 on RHEL6
%{?el6:BuildRequires: java-1.8.0-openjdk-devel}
%if 0%{?el7} || 0%{?el8} || 0%{?fedora}
BuildRequires: java-1.8.0-openjdk-devel
%else
BuildRequires: java-devel >= 1.8.0
BuildRequires: eclipse-swt
%endif
# compile with JavaFX on Fedora
%if 0%{?fedora} > 25
BuildRequires: javafx
%endif
Requires: coreutils
Requires: filesystem
Requires(pre): /usr/sbin/useradd, /usr/sbin/groupadd
Requires(post): coreutils, filesystem, /sbin/chkconfig
Requires(preun): /sbin/service, coreutils, /sbin/chkconfig, /usr/sbin/userdel, /usr/sbin/groupdel
Requires(postun): /sbin/service
%if 0%{?el7} || 0%{?el8} || 0%{?fedora}
Requires: /etc/init.d, logrotate, java-1.8.0-openjdk
%else
Requires: /etc/init.d, logrotate, jre >= 1.8.0
Requires: eclipse-swt
%endif
Source0: %{name}-src-%{davver}.tgz
%description
DavMail is a POP/IMAP/SMTP/Caldav/Carddav/LDAP Exchange gateway allowing
users to use any mail/calendar client with an Exchange server, even from
the internet or behind a firewall through Outlook Web Access. DavMail
now includes an LDAP gateway to Exchange global address book and user
personal contacts to allow recipient address completion in mail compose
window and full calendar support with attendees free/busy display.
%prep
%setup -q -n %{name}-src-%{davver}
%build
# JAVA_HOME points to the JDK root directory: ${JAVA_HOME}/{bin,lib}
jcompiler=`readlink -f $(which javac)`
bin=`dirname ${jcompiler}` # level up
java_home=`dirname ${bin}` # level up
export JAVA_HOME=${java_home}
# /scratch/rpmbuild/davmail-src-4.2.0-2066/build.xml:41: Please force UTF-8 encoding to build debian package with set ANT_OPTS=-Dfile.encoding=UTF-8
export ANT_OPTS="-Dfile.encoding=UTF-8"
%if 0%{?el6} || 0%{?el7} || 0%{?el8} || 0%{?fedora} || 0%{?is_opensuse} || 0%{?suse_version}
echo keep included swt on el7 and opensuse
%else
# externalize SWT
rm lib/swt*
[ -f %{_libdir}/java/swt.jar ] && ln -s %{_libdir}/java/swt.jar lib/swt.jar || ln -s /usr/lib/java/swt.jar lib/swt.jar
%endif
# we have java 1.6
ant -Dant.java.version=1.8 prepare-dist
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT%{_bindir}
mkdir -p $RPM_BUILD_ROOT%{_sbindir}
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/init.d
mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications
mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps
mkdir -p $RPM_BUILD_ROOT%{_datadir}/davmail/lib
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/davmail
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/log
# Init scripts, icons, configurations
install -m 0775 src/bin/davmail $RPM_BUILD_ROOT%{_bindir}/davmail
install -m 0644 src/init/davmail-logrotate $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/davmail
install -m 0775 src/init/davmail-init $RPM_BUILD_ROOT%{_sysconfdir}/init.d/davmail
ln -sf %{_sysconfdir}/init.d/davmail $RPM_BUILD_ROOT%{_sbindir}/rcdavmail
install -m 0644 src/etc/davmail.properties $RPM_BUILD_ROOT%{_sysconfdir}
# https://fedoraproject.org/wiki/TomCallaway/DesktopFileVendor
desktop-file-install --dir $RPM_BUILD_ROOT%{_datadir}/applications/ src/desktop/davmail.desktop --vendor=""
install -m 0775 src/init/davmail-wrapper $RPM_BUILD_ROOT%{_localstatedir}/lib/davmail/davmail
%if 0%{?suse_version} >= 1210 || 0%{?el7} || 0%{?el8} || 0%{?fedora}
install -D -m 644 src/init/davmail.service %{buildroot}%{_unitdir}/davmail.service
%endif
# Actual DavMail files
install -m 0644 src/java/tray32.png $RPM_BUILD_ROOT%{_datadir}/pixmaps/davmail.png
rm -f dist/lib/*win32*.jar
[ -f %{_libdir}/java/swt.jar ] && ln -s %{_libdir}/java/swt.jar $RPM_BUILD_ROOT%{_datadir}/davmail/lib/swt.jar || ln -s /usr/lib/java/swt.jar $RPM_BUILD_ROOT%{_datadir}/davmail/lib/swt.jar
rm -f dist/lib/*x86*.jar
rm -f dist/lib/*growl*.jar
install -m 0664 dist/lib/* $RPM_BUILD_ROOT%{_datadir}/davmail/lib/
install -m 0664 dist/*.jar $RPM_BUILD_ROOT%{_datadir}/davmail/
%if 0%{?sle_version} != 120300 && 0%{?suse_version} != 1310 && 0%{?suse_version} != 1320
mkdir -p $RPM_BUILD_ROOT%{_datadir}/metainfo
install -m 0644 src/appstream/org.davmail.DavMail.appdata.xml $RPM_BUILD_ROOT%{_datadir}/metainfo
%endif
%clean
rm -rf $RPM_BUILD_ROOT
%pre
/usr/sbin/groupadd -f -r davmail > /dev/null 2>&1 || :
/usr/sbin/useradd -r -s /sbin/nologin -d /var/lib/davmail -M \
-g davmail davmail > /dev/null 2>&1 || :
%post
file=/var/log/davmail.log
if [ ! -f ${file} ]
then
/bin/touch ${file}
fi
/bin/chown davmail:davmail ${file}
/bin/chmod 0640 ${file}
# proper service handling http://en.opensuse.org/openSUSE:Cron_rename
%{?fillup_and_insserv:
%{fillup_and_insserv -y davmail}
}
%{!?fillup_and_insserv:
# undefined
/sbin/chkconfig --add davmail
#/sbin/chkconfig davmail on
}
%preun
if [ "$1" = "0" ]; then
/sbin/service davmail stop > /dev/null 2>&1 || :
/bin/rm -f /var/lib/davmail/pid > /dev/null 2>&1 || :
%{?stop_on_removal:
%{stop_on_removal davmail}
}
%{!?stop_on_removal:
# undefined
/sbin/chkconfig davmail off
/sbin/chkconfig --del davmail
}
/usr/sbin/userdel davmail
if [ ! `grep davmail /etc/group` = "" ]; then
/usr/sbin/groupdel davmail
fi
fi
%postun
if [ $1 -ge 1 ]; then
%{?restart_on_update:
%{restart_on_update davmail}
%insserv_cleanup
}
%{!?restart_on_update:
# undefined
/sbin/service davmail condrestart > /dev/null 2>&1 || :
}
fi
%files
%defattr (-,root,root,-)
%{_bindir}/*
%{_sbindir}/rcdavmail
%{_sysconfdir}/init.d/davmail
%if 0%{?suse_version} >= 1210 || 0%{?el7} || 0%{?el8} || 0%{?fedora}
%{_unitdir}/davmail.service
%endif
%config(noreplace) %{_sysconfdir}/logrotate.d/davmail
%config(noreplace) %{_sysconfdir}/davmail.properties
%{_datadir}/applications/*
%{_datadir}/pixmaps/*
%{_datadir}/davmail/
%if 0%{?sle_version} != 120300 && 0%{?suse_version} != 1310 && 0%{?suse_version} != 1320
%{_datadir}/metainfo/org.davmail.DavMail.appdata.xml
%endif
%attr(0775,davmail,davmail) %{_localstatedir}/lib/davmail
%changelog
* Sun Apr 19 2020 Mickael Guessant <[email protected]>
- update to 5.5.1
* Wed Apr 15 2020 Mickael Guessant <[email protected]>
- update to 5.5.0
* Mon Nov 11 2019 Mickael Guessant <[email protected]>
- update to 5.4.0
* Mon Aug 12 2019 Mickael Guessant <[email protected]>
- update to 5.3.1
* Tue Aug 06 2019 Mickael Guessant <[email protected]>
- update to 5.3.0
* Mon Feb 11 2019 Mickael Guessant <[email protected]>
- update to 5.2.0
* Thu Dec 20 2018 Mickael Guessant <[email protected]>
- update to 5.1.0
* Wed Nov 21 2018 Mickael Guessant <[email protected]>
- update to 5.0.0
- merge files in trunk
- various distribution specific fixes
* Wed Sep 05 2018 Mickael Guessant <[email protected]>
- update to 4.9.0
* Wed Apr 04 2018 Mickael Guessant <[email protected]>
- update to 4.8.4 and build on EL7 with included SWT
* Wed Dec 13 2017 Mickael Guessant <[email protected]>
- update to 4.8.1 and fix RHEL 6 ant buildrequires
* Sun Oct 04 2015 Mickael Guessant <[email protected]>
- a few path fixes and switch to noarch mode
* Sun Feb 22 2015 Mickael Guessant <[email protected]>
- Add rcdavmail link, mark logrotate config file
* Sun Feb 22 2015 Mickael Guessant <[email protected]>
- Fix License and URL
* Tue Feb 17 2015 Mickael Guessant <[email protected]>
- Adapted spec for davmail 4.6.1
* Sun Feb 15 2015 Mickael Guessant <[email protected]>
- Fix JAVA HOME detection for openSUSE_13.2
* Sun Feb 01 2015 Achim Herwig <[email protected]>
- Adapted spec for davmail-src-4.6.0-2331.tgz
* Tue Oct 28 2014 Dmitri Bachtin <[email protected]>
- Adapted spec for davmail-src-4.5.1-2303.tgz
* Fri Dec 09 2011 Marcin Dulak <[email protected]>
- use /var/run/davmail.lock instead of /var/lock/subsys/davmail
http://en.opensuse.org/openSUSE:Packaging_checks#subsys-unsupported
* Fri Dec 09 2011 Marcin Dulak <[email protected]>
- fixed https://bugzilla.novell.com/show_bug.cgi?id=734592
* Wed Apr 20 2011 Marcin Dulak <[email protected]>
- proper service handling on openSUSE http://en.opensuse.org/openSUSE:Cron_rename
* Thu Mar 24 2011 Marcin Dulak <[email protected]>
- do not hard-code gid/uid: https://sourceforge.net/mailarchive/message.php?msg_id=27249602
* Fri Mar 18 2011 Marcin Dulak <[email protected]>
- fixed incorrect JAVA_HOME
- added i386 i586 arch
- uses davmail_gid and davmail_uid of default 213
- uses /etc/init.d for compatibility with other dists
- BuildRequires and Requires compatible with openSUSE 11.4
- removed runlevels 2 4 from davmail-init: https://bugzilla.novell.com/show_bug.cgi?id=675870
* Mon Oct 18 2010 Marko Myllynen <[email protected]>
- Initial version