]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/cyrusimap
Ein Paar Dateien fuer die GPLv3 angepasst.
[people/pmueller/ipfire-2.x.git] / lfs / cyrusimap
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 VER = 2.2.12
28
29 THISAPP = cyrus-imapd-$(VER)
30 DL_FILE = $(THISAPP).tar.gz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33 TARGET = $(DIR_INFO)/$(THISAPP)
34 PROG = cyrusimap
35 PAK_VER = 1
36
37 ###############################################################################
38 # Top-level Rules
39 ###############################################################################
40
41 objects = $(DL_FILE)
42
43 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
44
45 $(DL_FILE)_MD5 = 70b3bba526a8d36d3bb23a87d37e9188
46
47 install : $(TARGET)
48
49 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
50
51 download :$(patsubst %,$(DIR_DL)/%,$(objects))
52
53 md5 : $(subst %,%_MD5,$(objects))
54
55 dist:
56 @$(PAK)
57
58 ###############################################################################
59 # Downloading, checking, md5sum
60 ###############################################################################
61
62 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
63 @$(CHECK)
64
65 $(patsubst %,$(DIR_DL)/%,$(objects)) :
66 @$(LOAD)
67
68 $(subst %,%_MD5,$(objects)) :
69 @$(MD5)
70
71 ###############################################################################
72 # Installation Details
73 ###############################################################################
74
75 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
76 @$(PREBUILD)
77 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
78 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-no_transfig.patch
79 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-autocreate-0.9.4.diff
80 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-autosievefolder-0.6.diff
81 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-rmquota+deletemailbox-0.2-1.diff
82 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.1.3-flock.patch
83 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-munge8bit.patch
84 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.1.16-getrlimit.patch
85 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.10-groupcache.patch
86 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-seenstate.patch
87 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-acceptinvalidfrom.patch
88 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.3.3-deleteacl_invalid_identifier_fix.patch
89 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-notify_sms.patch
90 cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-gcc4.patch
91 cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/timsieved_reset_sasl_conn.patch
92 cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/allow_auth_plain_proxying.patch
93 cd $(DIR_APP) && patch -Np0 < $(DIR_SRC)/src/patches/authid_normalize.patch
94 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-64bit_quota-p1.patch
95 # cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-64bit_quota-p2.patch
96 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-singleinstancestore.patch
97 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-spool.patch
98 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/cyrus-imapd-2.2.12-mupdate-thread-safe.patch
99 cp -f /usr/include/et/com_err.h /usr/include/com_err.h
100 cd $(DIR_APP) && ./configure --prefix=/usr --with-service-path=/usr/lib/cyrus \
101 --with-cyrus-prefix=/usr/lib/cyrus --sysconfdir=/var/ipfire/cyrusimap \
102 --with-auth=unix --with-perl --with-sasl --with-idle=idled \
103 --with-syslogfacility=MAIL --enable-listext --without-snmp
104 cd $(DIR_APP) && make depend
105 cd $(DIR_APP) && make
106 cd $(DIR_APP) && make install
107 -mkdir /var/imap
108 chown cyrus:mail /var/imap
109 chmod 750 /var/imap
110 -mkdir /var/log/imap
111 chown cyrus:mail /var/log/imap
112 chmod 750 /var/log/imap
113 -mkdir /usr/sieve
114 chown cyrus:mail /usr/sieve
115 chmod 750 /usr/sieve
116 -mkdir /var/ipfire/cyrusimap
117 cp -f $(DIR_SRC)/config/cyrusimap/* /var/ipfire/cyrusimap
118 cp -f $(DIR_APP)/tools/mkimap /usr/bin
119 sudo -u cyrus /usr/bin/mkimap /var/ipfire/cyrusimap/imapd.conf
120 chown cyrus.mail /var/imap/socket
121 # Wenn das Dateisystem ext2 waere...
122 # cd /var/imap && chattr +S user quota user/* quota/* && chattr +S /var/spool/imap /var/spool/imap/*
123 # Give user cyrus a password
124 echo cyrus:ipfire | /usr/sbin/chpasswd
125 @rm -rf $(DIR_APP) /usr/include/com_err.h
126 @$(POSTBUILD)